I'm looking for the preferred way to do this in Etherpad Lite.
Thanks everyone!
--
http://dreev.es -- search://"Daniel Reeves"
A really dumb question: what's up with the etherpad_lite database?
There's apparently only one table (store) with 2 columns (key, value).
Can I not realistically do any database queries directly for this kind
of thing?
Follow the Yellow Brick Road -- http://beeminder.com
My awesome friend Rob Felty wrote this for extracting the full list of
public pads, sorted by number of revisions:
mysql -u USER -pPSW etherpad_lite -e 'select store.key from store' |
grep -Eo '^pad:[^:]+' | sed -e 's/pad://' | sort | uniq -c | sort -rn
| awk '{if ($1!="2") {print $2 }}'
We couldn't see a way to sort it by last modification time.