Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
content badge Iframe embedding
swh:1:cnt:b456862f6886b6b4a1eeb62ccf8c7a23afbb7ae7

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
<script setup lang="ts">
import { storeToRefs } from 'pinia'
import { useElementSize } from '@vueuse/core'
import { useStore as useVisStore } from '~/stores/visualization'
import { useStore as useSelectorStore } from '~/stores/selector'

const { visualizations } = storeToRefs(useVisStore())
const binStep = ref(50)
const years = computed(() => (
  visualizations.value.map((d) => d.publishDate)
    .filter((d) => d !== null) as number[]
))
const minYear = computed(() => Math.min(...years.value))
const maxYear = computed(() => Math.max(...years.value))
const nThresholds = computed(() => (
  Math.ceil((maxYear.value - minYear.value) / binStep.value)
))
const xDomain = computed((): [number, number] => ([
  binStep.value * Math.floor(minYear.value / binStep.value),
  binStep.value * Math.ceil(maxYear.value / binStep.value),
]))
const chartContainer = ref<HTMLDivElement>()
const { width, height } = useElementSize(chartContainer)
const { toggleRangeSelector } = useSelectorStore()
</script>

<template>
  <div view-container>
    <TheViewTimeHeader v-model="binStep" />
    <div
      ref="chartContainer"
      class="overflow-auto pr-1 flex-1 flex"
    >
      <VHistogram
        v-if="binStep >= 1 && binStep <= 1000"
        :data="years"
        :n-thresholds="nThresholds"
        :width="width"
        :height="height"
        :x-domain="xDomain"
        @click-bar="(d) => toggleRangeSelector('publishDate', d)"
      />
      <div
        v-else
        class="text-red m-auto"
      >
        Invalid Bin Size
      </div>
    </div>
  </div>
</template>

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API