Check-in [4d9a41d7ef]
Overview
| Comment: | Introduce markdown links for plugin list generator |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4d9a41d7ef186d9ccc0993df9599052d |
| User & Date: | mario on 2016-04-11 00:58:49 |
| Other Links: | manifest | tags |
Context
|
2016-04-11
| ||
| 12:53 | List Symbola/Unifont as soft dependency check-in: ae5130d76a user: mario tags: trunk | |
| 00:58 | Introduce markdown links for plugin list generator check-in: 4d9a41d7ef user: mario tags: trunk | |
| 00:58 | Update description for vTuner. check-in: ee26ea7f76 user: mario tags: trunk | |
Changes
Modified dev/lsplug.py from [bf74f01951] to [36b9b7d23c].
1 2 3 4 5 6 7 8 9 10 |
# 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:
| | | | | 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}]({url}) | **{version}** | {type} | {category} | *{priority}* | {description} |".format(**e)
except Exception, e:
print "ERROR*** ", name, e
|