suppress references to archived mailing list items in wikis
As of today, there remain a number of hyperlinks in the wikis that refer to sympa archives:
pcbe13089:wikis$ find -type f -name '*.md' -exec grep 'msg[0-9]*.html' -H {} \;|wc
47 271 6503
These need to be replaced by references to attached copies of the involved messages. Note that uploading (=attachment) is done per-project, and it is here where the biggest nuisance lies.
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Link issues together to show that they're related. Learn more.
Activity
- Author Owner
Actually, the list is a bit shorter, if one takes out the KiCad references (stored in launchpad):
pcbe13089:wikis$ find -type f -name '*.md' -exec grep 'sympa.*msg[0-9]*.html' -H {} \; ./zio.wiki/todo.md:http://lists.ohwr.org/sympa/arc/zio/2011-11/msg00026.html ./cernohl.wiki/cernohlideasfor12.md: - From http://lists.ohwr.org/sympa/arc/cernohl/2011-08/msg00006.html, ./nanofip-test-board.wiki/News.md:http://lists.ohwr.org/sympa/arc/nanofip-test-board/2010-08/msg00000.html ./fmc-projects.wiki/FMC-Multi-pin.md: http://lists.ohwr.org/sympa/arc/fmc-dio-16chttla/2010-03/msg00000.html ./fmc-pci-carrier.wiki/schreview.md: review](http://lists.ohwr.org/sympa/arc/fmc-pci-carrier/2010-06/msg00003.html)). ./wr-switch-sw.wiki/release-31.md:http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2012-12/msg00006.html ./wr-switch-sw.wiki/release-30.md:http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2012-08/msg00014.html ./white-rabbit.wiki/apoc00.md: archive](http://lists.ohwr.org/sympa/arc/white-rabbit/2009-11/msg00013.html) ./white-rabbit.wiki/apoc00.md: archive](http://lists.ohwr.org/sympa/arc/white-rabbit/2010-03/msg00003.html) ./white-rabbit.wiki/non-compliantsfp.md:list](http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2017-09/msg00011.html). ./white-rabbit.wiki/whiterabbitplanning.md:thread](https://www.ohwr.org/sympa/arc/whiterabbit/2009-11/msg00014.html) ./white-rabbit.wiki/sfp.md: connector](http://lists.ohwr.org/sympa/arc/white-rabbit/2009-11/msg00013.html) ./white-rabbit.wiki/sfp.md: laser.](http://lists.ohwr.org/sympa/arc/white-rabbit/2010-03/msg00003.html) (*was link to mail archive, should be moved*) ./wr-cores.wiki/Wrpc-faq.md:list](http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2015-05/msg00047.html) ./fmc-delay-1ns-8cha.wiki/faq.md:http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2014-01/msg00011.html
still, html files do not match the arctxt numbering, so a bit of scanning is required, plus the upload to projects is still largely manual. Anyway, it's doable with a bit of scripting and a bit of human brute force (the key word here is brute
).Refining the data: project, file, url
pcbe13089:wikis$ find -type f -name '*.md' -exec grep 'sympa.*msg[0-9]*.html' -H {} \; | sed 's!\./\(\([^/]*\)\.wiki[^:]*\):.*\(http.*msg[0-9]*\.html\).*!\2 \1 \3!' |column -t zio zio.wiki/todo.md http://lists.ohwr.org/sympa/arc/zio/2011-11/msg00026.html cernohl cernohl.wiki/cernohlideasfor12.md http://lists.ohwr.org/sympa/arc/cernohl/2011-08/msg00006.html nanofip-test-board nanofip-test-board.wiki/News.md http://lists.ohwr.org/sympa/arc/nanofip-test-board/2010-08/msg00000.html fmc-projects fmc-projects.wiki/FMC-Multi-pin.md http://lists.ohwr.org/sympa/arc/fmc-dio-16chttla/2010-03/msg00000.html fmc-pci-carrier fmc-pci-carrier.wiki/schreview.md http://lists.ohwr.org/sympa/arc/fmc-pci-carrier/2010-06/msg00003.html wr-switch-sw wr-switch-sw.wiki/release-31.md http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2012-12/msg00006.html wr-switch-sw wr-switch-sw.wiki/release-30.md http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2012-08/msg00014.html white-rabbit white-rabbit.wiki/apoc00.md http://lists.ohwr.org/sympa/arc/white-rabbit/2009-11/msg00013.html white-rabbit white-rabbit.wiki/apoc00.md http://lists.ohwr.org/sympa/arc/white-rabbit/2010-03/msg00003.html white-rabbit white-rabbit.wiki/non-compliantsfp.md http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2017-09/msg00011.html white-rabbit white-rabbit.wiki/whiterabbitplanning.md https://www.ohwr.org/sympa/arc/whiterabbit/2009-11/msg00014.html white-rabbit white-rabbit.wiki/sfp.md http://lists.ohwr.org/sympa/arc/white-rabbit/2009-11/msg00013.html white-rabbit white-rabbit.wiki/sfp.md http://lists.ohwr.org/sympa/arc/white-rabbit/2010-03/msg00003.html wr-cores wr-cores.wiki/Wrpc-faq.md http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2015-05/msg00047.html fmc-delay-1ns-8cha fmc-delay-1ns-8cha.wiki/faq.md http://lists.ohwr.org/sympa/arc/white-rabbit-dev/2014-01/msg00011.html
Edited by Juan David González Cobas - Juan David González Cobas added ohwr-gitlab label
added ohwr-gitlab label