Etherpad Maintenance: Difference between revisions
(Created page with "{{Article |MainNavigation=No }}") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== List of all public pads == | |||
You can find an index of all "public" pads at this URL: https://padlist.hackersanddesigners.nl/. | |||
The software running this webpage is available at https://github.com/hackersanddesigners/ether-index. | |||
By public pad, it's meant any pad containing a certain keyword. In our case this is <code><nowiki>__NOINDEX__</nowiki></code>. | |||
== Delete single pad == | |||
Construct a <code>URL</code> in the form of: | |||
<code><nowiki>https://etherpad.hackersanddesigners.nl/api/1/deletePad?apikey=</nowiki><API-KEY>&padID=<pad-uri></code> | |||
* <code><API-KEY></code> can be found in the root folder of the installed etherpad-lite repo | |||
* <code><pad-uri></code> is the URI of the pad we want to delete, that is the pad's name. For instance for the URL <code><nowiki>https://etherpad.hackersanddesigners.nl/p/test-pad</nowiki></code> the URI is <code>test-pad</code>. | |||
== Setup references == | |||
* https://github.com/ether/etherpad-lite | |||
* https://github.com/ether/etherpad-lite/wiki/How-to-use-Etherpad-Lite-with-MySQL | |||
* https://github.com/ether/etherpad-lite/wiki/Optimizing-Etherpad | |||
* https://github.com/ether/etherpad-lite/wiki/Converting-from-InnoDB-to-MyISAM | |||
[[Category:Maintenance]] |
Latest revision as of 12:31, 17 February 2023
List of all public pads
You can find an index of all "public" pads at this URL: https://padlist.hackersanddesigners.nl/.
The software running this webpage is available at https://github.com/hackersanddesigners/ether-index.
By public pad, it's meant any pad containing a certain keyword. In our case this is __NOINDEX__
.
Delete single pad
Construct a URL
in the form of:
https://etherpad.hackersanddesigners.nl/api/1/deletePad?apikey=<API-KEY>&padID=<pad-uri>
<API-KEY>
can be found in the root folder of the installed etherpad-lite repo<pad-uri>
is the URI of the pad we want to delete, that is the pad's name. For instance for the URLhttps://etherpad.hackersanddesigners.nl/p/test-pad
the URI istest-pad
.