David Gifford wrote: > Scott Sauyet wrote: >> David Gifford wrote:
>>> What would you guys say is the most efficient way to organize uploads of the html files I generate with node.js so that I am not uploading the whole folder of hundreds of tiddler htmls every single time I make changes to a few tiddlers on a daily basis? >> Are you generating a static site, something with pages like https://tiddlywiki.com/static/WikiText.html? Or are you generating a whole single-page wiki like https://tiddlywiki.com/ ? >>> What would you guys say is the most efficient way to organize uploads of the html files I generate with node.js so that I am not uploading the whole folder of hundreds of tiddler htmls every single time I make changes to a few tiddlers on a daily basis? >> Are you generating a static site, something with pages like https://tiddlywiki.com/static/WikiText.html? Or are you generating a whole single-page wiki like https://tiddlywiki.com/ ? > A static site with individual html pages for each tidder. Then it would depend upon how you're uploading them, and also if they all get regenerated every time. If only some of them are generated on a change, then it would depend on details of your upload process. Most FTP clients have some sort of synchronization setting to allow you to upload only items with a later local timestamp than server one. If you're using git, it's pretty well built into the workflow. For instance, things hosted on GitHub Pages, can generally be updated by git add . git commit -m "my explanation for the change" git push If it's some manual process, you might be able to sort by recent modification date and compare to the most recent server modification time and simply select the newer ones from your local for uploading. Sorry I can't be more specific, but it really does depend upon your setup. > And thank you for your answer to the other question! You're quite welcome. Cheers, -- Scott -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c42b13cb-821a-42a9-a32d-4a4761d20527%40googlegroups.com.

