mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
Add copyright header to source files
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Address exposing (toString)
|
||||
|
||||
import Api.Model.Address exposing (Address)
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Contact exposing (toString)
|
||||
|
||||
import Api.Model.Contact exposing (Contact)
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.CustomField exposing
|
||||
( boolValue
|
||||
, nameOrLabel
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Duration exposing (Duration, toHuman)
|
||||
|
||||
-- 486ms -> 12s -> 1:05 -> 59:45 -> 1:02:12
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.File exposing (makeFileId)
|
||||
|
||||
import File exposing (File)
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Folder exposing
|
||||
( isFolderMember
|
||||
, mkFolderOption
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Html exposing
|
||||
( KeyCode(..)
|
||||
, checkbox2
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Http exposing
|
||||
( authDelete
|
||||
, authGet
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.ItemDragDrop exposing
|
||||
( DragDropData
|
||||
, Dropped
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.List exposing
|
||||
( distinct
|
||||
, dropRight
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Maybe exposing
|
||||
( filter
|
||||
, fromString
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Person exposing (mkPersonOption)
|
||||
|
||||
import Api.Model.IdName exposing (IdName)
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Result exposing (fold)
|
||||
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Size exposing
|
||||
( SizeUnit(..)
|
||||
, bytesReadable
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.String exposing
|
||||
( crazyEncode
|
||||
, ellipsis
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Tag exposing
|
||||
( catSettings
|
||||
, getCategories
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Time exposing (formatIsoDateTime)
|
||||
|
||||
import DateFormat
|
||||
|
@ -1,3 +1,9 @@
|
||||
{-
|
||||
Copyright 2020 Docspell Contributors
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-}
|
||||
|
||||
module Util.Update exposing
|
||||
( andThen1
|
||||
, andThen2
|
||||
|
Reference in New Issue
Block a user