Pumping pads as files into publishing frameworks!
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
echo "Pulling pads now ..."
|
|
|
|
|
|
|
|
# This will pump all the pads with a __PUBLISH__ tag into a folder "publish" as meta.json, txt, html and dhtml
|
|
|
|
etherpump pull \
|
|
|
|
--meta \
|
|
|
|
--html \
|
|
|
|
--text \
|
|
|
|
--magicwords \
|
|
|
|
--publish-opt-in \
|
|
|
|
--pub p \
|
|
|
|
--css ../stylesheet.css \
|
|
|
|
--fix-names \
|
|
|
|
--connection 5 \
|
|
|
|
--force \
|
|
|
|
# rr-minimal-viable-learning # Note(decentral1se): uncomment for single pad
|
|
|
|
|
|
|
|
echo "Making the Etherpump index now ..."
|
|
|
|
|
|
|
|
# This will make an index for the dump
|
|
|
|
etherpump index \
|
|
|
|
input \
|
|
|
|
p/*.meta.json \
|
|
|
|
--templatepath templates \
|
|
|
|
--title "Notes, __MAGICWORDS__, readers & more ..." \
|
|
|
|
--output index.html
|
|
|
|
|
|
|
|
# tmp
|
|
|
|
# rm -r ../publish/
|
|
|
|
# mv publish ../
|
|
|
|
# mv index.html ../
|
|
|
|
|
|
|
|
echo "Done!"
|
|
|
|
|
|
|
|
# This will save a pad.css file every hour from the pad https://pad.vvvvvvaria.org/pad.css
|
|
|
|
# cp publish/pad.css /srv/etherpad-lite/src/altetherpad/src/static/skins/no-skin/pad.css
|