Pumping pads as files into publishing frameworks!
Go to file
2015-11-19 12:47:03 +01:00
bin subcommands 2015-09-17 18:23:18 +02:00
etherdump self contained sync command with per output options and all flag 2015-11-19 12:47:03 +01:00
.gitignore migrated individual commands 2015-09-17 18:43:17 +02:00
LICENSE.txt added license document 2015-09-17 17:51:48 +02:00
padinfo.sample.json continued tweaks 2015-09-19 11:43:16 +02:00
README.md make file friendliness 2015-11-13 11:03:57 +01:00
setup.py subcommands 2015-09-17 18:23:18 +02:00

etherdump

Tool to publish etherpad pages to (archival) HTML.

Requirements

Python (2.7) with:

  • html5lib
  • jinja2

Installation

pip install html5lib jinja2
python setup.py install

Padinfo file

All pad-specific settings are loaded from a file called "padinfo.json" -- by default etherdump looks in the current directory. Make a copy of padinfo.sample.json to start one. Make sure to check that the URL and port settings are correct, and to paste the correct apikey here!

cp padinfo.sample.json ~/yourfolder/padinfo.json
nano padinfo.json

And then for instance:

etherdump list

subcommands

  • dump (the default)
  • list
  • listauthors
  • text
  • diffhtml
  • revisionscount

To get help on a subcommand:

etherdump revisionscount --help

TODO

  • Modify tools to work with make ** Sync command ** Dump command that works on a single page ** Post processing as separable filters (such as linkify)
  • Support for migrating (what dump formats exist that would allow pushing to another instance?)