/ep_pad-lister

An Etherpad-lite plugin that list all pad with their revisions and last edit date.

Primary LanguageJavaScript

ep_pad-lister

A plugin for Etherpad-lite that shows a list of all pads sorted by last edit date.

Features

  • List all pads, shows revision and last edit date
  • Ignores pads without any changes
  • Ignores private pads (= pads starting with private_)

Screenshots

New pad New Pad

Pad list Pad_List

Install

npm install ep_pad-lister (from your etherpad-lite folder)

Put the follwing snippet into src/static/custom/index.css

.pad-lister-link-container {
  font-size: 16px;
  max-width: 500px;
  text-align:center;
  min-height: 20px;
  padding: 19px;
  margin: 50px auto;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.pad-lister-link-container .code {
  font-family: monospace;
  padding: 0 5px;
  color: #c7254e;
  background-color: #fff;
}