diff options
| author | Alexander Færøy | 2014-06-07 23:02:00 +0200 |
|---|---|---|
| committer | Alexander Færøy | 2014-06-07 23:07:50 +0200 |
| commit | 11ad3dfd172feda646df141f6533e18a86cf51f6 (patch) | |
| tree | 242b4ad385e7218d834c0287abb91a50d9dcd7d3 /scripts.dmp | |
| parent | 6fcbd8b419087147b6de4c9813dd88a4d24b9099 (diff) | |
| download | scripts.irssi.org-11ad3dfd172feda646df141f6533e18a86cf51f6.tar.bz2 | |
Move scripts.dmp to /
Diffstat (limited to 'scripts.dmp')
| -rw-r--r-- | scripts.dmp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/scripts.dmp b/scripts.dmp new file mode 100644 index 0000000..fc396fe --- /dev/null +++ b/scripts.dmp @@ -0,0 +1,34 @@ +--- +layout: nil +--- + +$scripts = { +{% for script in site.data.scripts %} + '{{ script.filename }}' => { + 'filename' => '{{ script.filename }}', + 'last_modified' => '{{ script.modified }}', + 'version' => '{{ script.version }}', + 'authors' => '{{ script.authors }}', + 'contact' => '{{ script.contact }}', + 'name' => '{{ script.name }}', + 'description' => '{{ script.description }}', + 'license' => '{{ script.license }}', +{% if script.url %} + 'url' => '{{ script.url }}', +{% endif %} +{% if script.changed %} + 'changed' => '{{ script.changed }}', +{% endif %} +{% if script.commands %} + 'commands' => '{{ script.commands }}', +{% endif %} +{% if script.note %} + 'note' => '{{ script.note }}', +{% endif %} +{% if script.modules %} + 'modules' => '{{ script.modules }}', +{% endif %} + + }, +{% endfor %} +}; |
