Skip to content

Commit

Permalink
Remove unnecessary web scraper directives (#2561)
Browse files Browse the repository at this point in the history
CDash currently uses HTML directives to disallow web scraping. This
prevents CDash sites from being indexed by search engines. This PR
removes the web scraper directives, and adds a description directive, as
recommended by Google's "Lighthouse" web optimization tool.
  • Loading branch information
williamjallen authored Nov 13, 2024
1 parent 3d75755 commit 071885d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion resources/views/cdash.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@
>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="robots" content="noindex,nofollow"/>
<meta
name="description"
content="
CDash is an open source, web-based software testing server. CDash aggregates, analyzes, and displays the
results of software testing processes submitted from clients located around the world. CDash is a part of a
larger software process that integrates Kitware’s CMake, CTest, and CPack tools, as well as other external
packages used to design, manage and maintain large-scale software systems
"
>
<meta name="csrf-token" content="{{ csrf_token() }}"/>
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}"/>

Expand Down

0 comments on commit 071885d

Please sign in to comment.