Skip to content

Commit

Permalink
Merge pull request #3437 from CVEProject/int
Browse files Browse the repository at this point in the history
INT -> DEV update
  • Loading branch information
jdaigneau5 authored Feb 13, 2025
2 parents 8061c4a + 989533e commit 0d05ac2
Show file tree
Hide file tree
Showing 30 changed files with 2,412 additions and 713 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/web-issue-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on:
issues:
types: [opened]
jobs:
createCard:
runs-on: ubuntu-latest
steps:
- name: Add New Issues to Backlog Board
uses: peter-evans/create-or-update-project-card@866533e2ae61f13c35fd1d374049713fab43c729 # current tag: v2
with:
project-name: Backlog Board
column-name: New Issues (Need to be Triaged)
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/cvePurpleVFavicon.svg">
<title>CVE Website</title>
<link rel="canonical" href="https://cve.org">
<script src="https://cmp.osano.com/AzyhULTdPkqmy4aDN/46057d56-0263-4cca-abac-9adddada4f3b/osano.js"></script>
</head>
<body class="has-navbar-fixed-top">
<h1 hidden>Common vulnerabilities and Exposures (CVE)</h1>
<noscript>
<strong>We're sorry but the CVE Website doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
Expand Down
172 changes: 172 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/vue-fontawesome": "^3.0.5",
"@unhead/vue": "^1.11.18",
"axios": "^1.6.5",
"bulma": "^0.9.4",
"bulma-timeline": "^3.0.5",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"pinia": "^2.1.7",
Expand All @@ -50,4 +52,4 @@
"vite": "^5.0.10",
"vue-tsc": "^1.8.25"
}
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
User-agent: *
Disallow: /*.pdf$
Disallow: /*.jpg$
Disallow: /*.png$
Disallow: /*.svg$
Disallow: /*.css$
Disallow: /images/
Disallow: /Resources/
7 changes: 7 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import NotificationBannerModule from './components/NotificationBannerModule.vue'
import FoooterModule from './components/FooterModule.vue';
import NotFound from './views/NotFound.vue';
import { usePartnerStore } from '@/stores/partners';
import { useSeoMeta } from '@unhead/vue';
export default {
components: {
Expand All @@ -35,6 +36,12 @@ export default {
},
beforeMount() {
usePartnerStore().populatePartnerShortLongNameMap();
useSeoMeta({
title: 'CVE: Common Vulnerabilities and Exposures',
description: 'At cve.org, we provide the authoritative '
+ 'reference method for publicly known information-security '
+ 'vulnerabilities and exposures'
});
}
}
</script>
Expand Down
Loading

0 comments on commit 0d05ac2

Please sign in to comment.