mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-10-30 21:40:12 +00:00 
			
		
		
		
	Fix formatting
This commit is contained in:
		| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxEdit exposing | ||||
|     ( BoxAction(..) | ||||
|     , Model | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxMessageEdit exposing (Model, Msg, init, update, view) | ||||
|  | ||||
| import Data.BoxContent exposing (MessageData) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxQueryEdit exposing (..) | ||||
|  | ||||
| import Comp.BoxSearchQueryInput | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxQueryView exposing (Model, Msg, init, reloadData, update, view) | ||||
|  | ||||
| import Api | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxSearchQueryInput exposing | ||||
|     ( Model | ||||
|     , Msg | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxStatsEdit exposing (..) | ||||
|  | ||||
| import Comp.BoxSearchQueryInput | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxStatsView exposing (Model, Msg, init, reloadData, update, view) | ||||
|  | ||||
| import Api | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxUploadEdit exposing (..) | ||||
|  | ||||
| import Api | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxUploadView exposing (..) | ||||
|  | ||||
| import Comp.UploadForm | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.BoxView exposing (..) | ||||
|  | ||||
| import Comp.BoxQueryView | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.DashboardEdit exposing (Model, Msg, getBoard, init, update, view, viewBox) | ||||
|  | ||||
| import Comp.Basic as B | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.DashboardManage exposing (Model, Msg, SubmitAction(..), UpdateResult, init, update, view) | ||||
|  | ||||
| import Api | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.DashboardView exposing (Model, Msg, init, reloadData, update, view, viewBox) | ||||
|  | ||||
| import Comp.BoxView | ||||
|   | ||||
| @@ -3,6 +3,8 @@ | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| -- inspired from here: https://ellie-app.com/3T5mNms7SwKa1 | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.ItemColumnView exposing (..) | ||||
|  | ||||
| import Api.Model.ItemLight exposing (ItemLight) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Comp.UploadForm exposing (Model, Msg, init, reset, update, view) | ||||
|  | ||||
| import Api | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Data.AccountScope exposing (..) | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Data.Box exposing (Box, boxIcon, decoder, empty, encode, messageBox, queryBox, statsBox, uploadBox) | ||||
|  | ||||
| import Data.BoxContent exposing (BoxContent(..)) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Data.BoxContent exposing | ||||
|     ( BoxContent(..) | ||||
|     , MessageData | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Data.Dashboard exposing (Dashboard, decoder, empty, encode, isEmpty) | ||||
|  | ||||
| import Data.Box exposing (Box) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Data.Dashboards exposing | ||||
|     ( AllDashboards | ||||
|     , Dashboards | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Data.ItemColumn exposing (..) | ||||
|  | ||||
| import Api.Model.ItemLight exposing (ItemLight) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxEdit exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Basics | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxMessageEdit exposing (Texts, de, gb) | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxQueryEdit exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Comp.BoxSearchQueryInput | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxQueryView exposing (Texts, de, gb) | ||||
|  | ||||
| import Data.ItemTemplate as IT | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxSearchQueryInput exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Comp.BookmarkDropdown | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxStatsEdit exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Comp.BoxSearchQueryInput | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxStatsView exposing (Texts, de, gb) | ||||
|  | ||||
| import Http | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxUploadEdit exposing (Texts, de, gb) | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxUploadView exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Comp.UploadForm | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.BoxView exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Comp.BoxQueryView | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.DashboardEdit exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Basics | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.DashboardManage exposing (Texts, de, gb) | ||||
|  | ||||
| import Http | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.DashboardView exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Comp.BoxView | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Comp.UploadForm exposing (Texts, de, gb) | ||||
|  | ||||
| import Data.Language exposing (Language) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Data.AccountScope exposing (Texts, de, gb) | ||||
|  | ||||
| import Data.AccountScope exposing (AccountScope) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Data.BoxContent exposing (Texts, de, gb) | ||||
|  | ||||
| import Data.BoxContent exposing (BoxContent(..)) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Data.ItemColumn exposing (Texts, de, gb) | ||||
|  | ||||
| import Data.ItemColumn exposing (ItemColumn(..)) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Page.Dashboard exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Basics | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Messages.Page.DefaultDashboard exposing (Texts, de, gb) | ||||
|  | ||||
| import Messages.Basics | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Page.Dashboard.DefaultDashboard exposing (getDefaultDashboard, value) | ||||
|  | ||||
| import Data.Box exposing (Box) | ||||
|   | ||||
| @@ -1,3 +1,10 @@ | ||||
| {- | ||||
|    Copyright 2020 Eike K. & Contributors | ||||
|  | ||||
|    SPDX-License-Identifier: AGPL-3.0-or-later | ||||
| -} | ||||
|  | ||||
|  | ||||
| module Page.Dashboard.SideMenu exposing (view) | ||||
|  | ||||
| import Api.Model.VersionInfo exposing (VersionInfo) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user