From f0bba48727283b313348b9772ab6da320f83b4e7 Mon Sep 17 00:00:00 2001 From: David Johnson Date: Tue, 19 Nov 2024 15:10:12 -0600 Subject: [PATCH] Add 'web' to tagline. --- README.md | 2 +- examples/haskell-miso.org/server/Main.hs | 4 ++-- examples/haskell-miso.org/shared/Common.hs | 2 +- examples/miso-examples.cabal | 2 +- miso.cabal | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bd15ff7..2b176c6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ -

A tasty Haskell front-end framework

+

A tasty Haskell front-end web framework

diff --git a/examples/haskell-miso.org/server/Main.hs b/examples/haskell-miso.org/server/Main.hs index fb7556c..bb3afb6 100644 --- a/examples/haskell-miso.org/server/Main.hs +++ b/examples/haskell-miso.org/server/Main.hs @@ -77,7 +77,7 @@ misoManifest = , start_url = "." , display = "standalone" , theme_color = "#00d1b2" - , description = "A tasty Haskell front-end framework" + , description = "A tasty Haskell front-end web framework" } handle404 :: Application @@ -92,7 +92,7 @@ instance L.ToHtml a => L.ToHtml (Wrapper a) where L.doctype_ L.html_ [ L.lang_ "en" ] $ do L.head_ $ do - L.title_ "Miso: A tasty Haskell front-end framework" + L.title_ "Miso: A tasty Haskell front-end web framework" L.link_ [ L.rel_ "stylesheet" , L.href_ "https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.2/gh-fork-ribbon.min.css" ] diff --git a/examples/haskell-miso.org/shared/Common.hs b/examples/haskell-miso.org/shared/Common.hs index a32cc71..3694d72 100644 --- a/examples/haskell-miso.org/shared/Common.hs +++ b/examples/haskell-miso.org/shared/Common.hs @@ -169,7 +169,7 @@ home = template v , rel_ "noopener" , target_ "_blank"][ strong_ [] [text "Haskell" ]] - , text " front-end framework" + , text " front-end web framework" ] ] diff --git a/examples/miso-examples.cabal b/examples/miso-examples.cabal index a884707..45c450f 100644 --- a/examples/miso-examples.cabal +++ b/examples/miso-examples.cabal @@ -8,7 +8,7 @@ copyright: Copyright (c) 2017-2020 David M. Johnson bug-reports: https://github.com/dmjio/miso/issues build-type: Simple cabal-version: 1.22 -synopsis: A tasty Haskell front-end framework +synopsis: A tasty Haskell front-end web framework description: Examples for miso license: BSD3 license-file: LICENSE diff --git a/miso.cabal b/miso.cabal index 4715bd8..72a2b25 100644 --- a/miso.cabal +++ b/miso.cabal @@ -11,7 +11,7 @@ bug-reports: https://github.com/dmjio/miso/issues build-type: Simple extra-source-files: README.md cabal-version: 1.22 -synopsis: A tasty Haskell front-end framework +synopsis: A tasty Haskell front-end web framework description: Miso is a small, production-ready, "isomorphic" Haskell front-end framework featuring a virtual-dom, recursive diffing / patching algorithm, event delegation, event batching, SVG, Server-sent events, Websockets, type-safe servant-style routing and an extensible Subscription-based subsystem. Inspired by Elm, Redux and Bobril. Miso is pure by default, but side effects (like XHR) can be introduced into the system via the Effect data type. Miso makes heavy use of the GHCJS FFI and therefore has minimal dependencies.