ebarboni commented on issue #7224: URL: https://github.com/apache/netbeans/issues/7224#issuecomment-2034000950
I think download is corner case url https://netbeans.apache.org/front/main/community/mailing-lists or https://netbeans.apache.org/front/main/community/mailing-lists/ both work well maybe https://github.com/apache/netbeans-website/blob/0f08257ddeb163f547f052b3bfa5f110a5db7897/.htaccess#L120 is a bit too easy written 😄 . Found around 20 url ending with .html that are 404 + download page itself 404. Almost all of wiki/tutorials (new pattern nebeans.apache.org) are ok Will make a PR to catch them all on NB codebase way to reproduce ``` grep -hREo '(http|https)://[a-zA-Z0-9./?=_%:-]*' | sort -u > bigfile extract netbeans.apache.org from bigfile to smallfile webchk -i smallfile | grep 404 https://netbeans.apache.org/download ... 404 Not Found (0.291) https://netbeans.apache.org/dummy?queryString=1 ... 404 Not Found (0.3) https://netbeans.apache.org/front/main/projects/buildsys/j2se-project-ui-spec.html ... 404 Not Found (0.0964) https://netbeans.apache.org/front/main/projects/autoupdate/nbm/nbm_package.html ... 404 Not Found (0.106) https://netbeans.apache.org/front/main/projects/ui/ws/ws_spec.html ... 404 Not Found (0.0959) https://netbeans.apache.org/dummy ... 404 Not Found (0.394) https://netbeans.apache.org/front/main/blogs/timboudreau/egads_an_actual/ ... 404 Not Found (0.0881) https://netbeans.apache.org/front/main/projects/platform/openide/proposals/actions/design.html ... 404 Not Found (0.107) https://netbeans.apache.org/nb/issues.html ... 404 Not Found (0.41) https://netbeans.apache.org/front/main/projects/ui/themes/themes.html ... 404 Not Found (0.0829) https://netbeans.apache.org/front/main/projects/platform/core/windowsystem/changes.html ... 404 Not Found (0.0881) https://netbeans.apache.org/front/main/projects/buildsys/build-sys-ui-spec.html ... 404 Not Found (0.0853) https://netbeans.apache.org/front/main/projects/platform/openide/proposals/actions/impl.html ... 404 Not Found (0.101) https://netbeans.apache.org/front/main/projects/lexer/token-id-naming.html ... 404 Not Found (0.0935) https://netbeans.apache.org/front/main/community/mailing-lists.html ... 404 Not Found (0.0824) https://netbeans.apache.org/front/main/projects/buildsys/design.html ... 404 Not Found (0.0807) https://netbeans.apache.org/front/main/projects/platform/articles/installation.html ... 404 Not Found (0.0808) https://netbeans.apache.org/front/main/projects/platform/openide/tutorial/review/opinions_37386.html ... 404 Not Found (0.0801) https://netbeans.apache.org/front/main/projects/platform/openide/proposals/arch/cli.html ... 404 Not Found (0.0796) https://netbeans.apache.org/front/main/projects/ui/code_folding/cf_uispec.html ... 404 Not Found (0.0814) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
