• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..Today-

conf/H17-Oct-2022-4424

lang/H17-Oct-2022-3824

READMEH A D16-Oct-2022956 2819

README.mdH A D16-Oct-2022741 2718

action.phpH A D16-Oct-2022837 3515

plugin.info.txtH A D16-Oct-2022217 87

script.jsH A D16-Oct-20223.7 KiB10164

style.cssH A D16-Oct-20221.8 KiB7562

syntax.phpH A D16-Oct-20222.8 KiB9644

README

1scrollticker Plugin for DokuWiki
2
3format unsorted list as scrolling news ticker
4
5All documentation for this plugin can be found at
6https://humanvisualisierungsknecht.de
7
8If you install this plugin manually, make sure it is installed in
9lib/plugins/scrollticker/ - if the folder is called different it
10will not work!
11
12Please refer to http://www.dokuwiki.org/plugins for additional info
13on how to install plugins in DokuWiki.
14
15----
16Copyright (C) medmen <med-men@gmx.net>
17
18This program is free software; you can redistribute it and/or modify
19it under the terms of the GNU General Public License as published by
20the Free Software Foundation; version 2 of the License
21
22This program is distributed in the hope that it will be useful,
23but WITHOUT ANY WARRANTY; without even the implied warranty of
24MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25GNU General Public License for more details.
26
27See the COPYING file in your DokuWiki folder for details
28

README.md

1# dokuwiki-plugin-scrollticker
2plugin that turns an unordered list into a scrolling newsticker
3
4## how to use?
5simply wrap an unordered list into the tags
6
7`<scrollticker>
8  my list
9</scrollticker>`
10
11besides ordinary lists, also lists generated by dokuwiki functions will work.
12For example you could fetch a list with links to the last three items of a discussion from the discussion plugin:
13
14`<scrollticker>
15{{threads>*&count=3&skipempty&simplelist}}
16</scrollticker>`
17
18or you could fetch a list with links to the articles in namespace "news" tagged with "latest", using the tag plugin
19
20`<scrollticker>
21{{topic>news?latest}}
22</scrollticker>`
23
24In fact, that was my main goal when i started this...
25
26Feel free to improve, share and debug!
27