ros-infrastructure / mirror

ROS Mirroring Config
4 stars 2 forks source link

Make wiki mirrors use doc mirrors for API docs (and others) #12

Open tfoote opened 6 years ago

tfoote commented 6 years ago

From: ros-infrastructure/roswiki#234 @gavanderhoorn

As the reason to visit the mirrors is typically because the main site is down, would it make sense to somehow change the base URL for the wiki mirrors to point to the doc mirrors as well?

Example: make the 'Code API' link for angles point to the mirrored API docs, instead of the regular ones.

tfoote commented 6 years ago

Being self contained would be nice. Both for the case outlined and for the offline/non-networked case.

It's a challenge since writing a sed script to do the substitution would not be too hard to do the url substitution. But it will break the rsync caching for updates to the mirror forcing a reload of all the files.

dirk-thomas commented 6 years ago

The substitution could easily be reverted before doing the next rsync?

gavanderhoorn commented 6 years ago

My apologies for not opening the issue here.

I don't run a docs/wiki mirror, but from your comment @tfoote I understand it's all plain html? Or should the manifests be run through sed to update the urls?

tfoote commented 6 years ago

Yes, it's all plain html. You'd be running sed over the resultant html files.

The sed script to undo the remapping would work. There'd be a brief period during the resync when the links would be broken doing the sed reversion rsync and then rerunning sed, but that would be managable and also way better than the current state.