Skip to content

Commit

Permalink
fix: SPDX
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Oct 31, 2024
1 parent c938d68 commit e47e789
Show file tree
Hide file tree
Showing 14 changed files with 49 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/views/FilesList/FileEntry/FileEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
- SPDX-FileCopyrightText: 2024 LibreCode coop and contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->

<template>
<tr class="files-list__row"
@contextmenu="onRightClick">
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileEntry/FileEntryActions.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<td class="files-list__row-actions">
<!-- Menu actions -->
Expand Down
1 change: 0 additions & 1 deletion src/views/FilesList/FileEntry/FileEntryGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
- SPDX-FileCopyrightText: 2024 LibreCode coop and contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->

<template>
<tr class="files-list__row"
@contextmenu="onRightClick">
Expand Down
5 changes: 5 additions & 0 deletions src/views/FilesList/FileEntry/FileEntryMixin.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* SPDX-FileCopyrightText: 2021 LibreCode coop and LibreCode contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

export default {
props: {
source: {
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileEntry/FileEntryName.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<component :is="linkTo.is"
ref="basename"
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileEntry/FileEntryPreview.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<span class="files-list__row-icon">
<!-- Decorative images, should not be aria documented -->
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileEntry/FileEntryStatus.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="enDot">
<div :class="statusText !== 'none' ? 'dot ' + statusToClass(status) : '' "
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileListFilter/FileListFilter.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<NcActions force-menu
:type="isActive ? 'secondary' : 'tertiary'"
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileListFilter/FileListFilterModified.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<FileListFilter :is-active="isActive"
:filter-name="t('libresign', 'Modified')"
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileListFilter/FileListFilterStatus.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<FileListFilter class="file-list-filter-status"
:is-active="isActive"
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FileListFilters.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="file-list-filters">
<div class="file-list-filters__filter">
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FilesList.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<NcAppContent :page-heading="t('libresign', 'Files')">
<div class="files-list__header">
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/FilesListVirtual.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<VirtualList :data-component="userConfigStore.grid_view ? FileEntryGrid : FileEntry"
:loading="loading">
Expand Down
4 changes: 4 additions & 0 deletions src/views/FilesList/VirtualList.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
- SPDX-FileCopyrightText: 2024 LibreCode coop and LibreCode contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="files-list">
<div class="files-list__filters">
Expand Down

0 comments on commit e47e789

Please sign in to comment.