Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spruce/ep_small_list
A small script for etherpad-lite which adds all pads to the index page.
https://github.com/spruce/ep_small_list
Last synced: 5 days ago
JSON representation
A small script for etherpad-lite which adds all pads to the index page.
- Host: GitHub
- URL: https://github.com/spruce/ep_small_list
- Owner: spruce
- Created: 2013-04-16T20:28:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T21:04:54.000Z (over 2 years ago)
- Last Synced: 2024-10-02T20:37:44.211Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 3
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - spruce/ep_small_list - A small script for etherpad-lite which adds all pads to the index page. (others)
README
ep_small_list
=============A small script for [etherpad-lite](https://github.com/ether/etherpad-lite) which adds all pads to the index page.
## Installation
```console
npm install ep_small_list
```
Restart your etherpad-lite instance to recognice new addon.## Compatibility
* Requires a minimum Node.js version of 7.10.1.## Configuration
The plugin works without configuration. But there are several configuration settings available. In your `settings.json`, add:
### Limit number of entries
```json
"ep_small_list": {
"limit": 10
}
```By default the number of entries is not limited ("limit": 0).
### Sort by last change
```json
"ep_small_list": {
"sortmode": "lastchange"
}
```The following sorting modes are available:
* "default": Use the order in which the API returns the pads (this is also the default sortmode).
* "lastchange": Sort the pads by last change.### Reverse order
```json
"ep_small_list": {
"sortorder": "reverse"
}
```The following sorting orders are available:
* "normal": Use the normal order generated by the choosen sortmode.
* "reverse": Reverse the order generated by the choosen sortmode.## Features
* Supports [ep\_set\_title\_on\_pad](https://github.com/JohnMcLear/ep_set_title_on_pad)