Check-in [e2867b44a2]
Overview
Comment: | Generate static plugin list for fossil wiki. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e2867b44a21296caeb3309d3c1ec5d3c |
User & Date: | mario on 2016-04-07 00:17:29 |
Other Links: | manifest | tags |
Context
2016-04-07
| ||
14:46 | New plugin for Reciva check-in: bf85dca133 user: mario tags: trunk | |
00:17 | Generate static plugin list for fossil wiki. check-in: e2867b44a2 user: mario tags: trunk | |
2016-04-06
| ||
00:24 | Updated default categories, new sorting options. check-in: d702f2e1c5 user: mario tags: trunk | |
Changes
Added dev/lsplug.py version [bf74f01951].
> > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # description: list available plugins for wiki from config import * import pluginconf pluginconf.module_base = "config" pluginconf.plugin_base = ["channels", "contrib"]#, conf.share+"/channels", conf.dir+"/plugins"] for name,e in pluginconf.all_plugin_meta().items(): if "title" in e: try: print "| {title} | {version} | {category} | {url} | {description} |".format(**e) except: None |