From 45ac950238c8f78effc38795680b4c2c23c8caae Mon Sep 17 00:00:00 2001 From: Elliot Cameron Date: Mon, 15 Jun 2020 12:30:17 -0400 Subject: [PATCH 1/4] Add purpose statement and spruce up README a bit --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ea12fe4..b301440 100644 --- a/README.md +++ b/README.md @@ -2,20 +2,22 @@ [![Hackage](https://img.shields.io/hackage/v/reflex-dom.svg)](http://hackage.haskell.org/package/reflex-dom) +Web applications without callbacks or side-effects. Reflex-DOM brings the power of [Functional Reactive Programming (FRP)](https://wiki.haskell.org/Functional_Reactive_Programming) to the web. Build [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) and other [Document Object Model (DOM)](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) data with a pure functional interface. + ### A Framework for Functional Reactive Web Apps in Haskell -Reflex-DOM is a framework for building web applications in Haskell, based on the [Functional Reactive Programming](https://wiki.haskell.org/Functional_Reactive_Programming) library [Reflex](https://github.com/reflex-frp/reflex). - -A summary of Reflex-DOM functions is available in the [quick reference](Quickref.md). +Reflex-DOM is a framework for building web applications in [Haskell](https://www.haskell.org/), based on the [Functional Reactive Programming](https://wiki.haskell.org/Functional_Reactive_Programming) library [Reflex](https://github.com/reflex-frp/reflex). **Visit https://reflex-frp.org/ for more information, tutorials, documentation and [examples](https://examples.reflex-frp.org/).** ### Additional resources -[Get started with Reflex](https://github.com/reflex-frp/reflex-platform) -[/r/reflexfrp](https://www.reddit.com/r/reflexfrp) - -[irc.freenode.net #reflex-frp](http://webchat.freenode.net?channels=%23reflex-frp&uio=d4) +* [Official Website](https://reflex-frp.org/) +* [Quick Reference](Quickref.md) +* [Obelisk](https://github.com/obsidiansystems/obelisk#obelisk): A framework built on Reflex and Reflex-DOM for functional reactive web and mobile applications, with batteries included. +* [Get started with Reflex](https://github.com/reflex-frp/reflex-platform) +* [/r/reflexfrp](https://www.reddit.com/r/reflexfrp) +* [irc.freenode.net #reflex-frp](http://webchat.freenode.net?channels=%23reflex-frp&uio=d4) ### Hacking From ecc770e332de852c275a7969c3b1d47897d6ccc5 Mon Sep 17 00:00:00 2001 From: Elliot Cameron Date: Mon, 15 Jun 2020 12:53:31 -0400 Subject: [PATCH 2/4] Update cabal descriptions --- reflex-dom-core/reflex-dom-core.cabal | 4 ++++ reflex-dom/reflex-dom.cabal | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/reflex-dom-core/reflex-dom-core.cabal b/reflex-dom-core/reflex-dom-core.cabal index 5935273..50e756c 100644 --- a/reflex-dom-core/reflex-dom-core.cabal +++ b/reflex-dom-core/reflex-dom-core.cabal @@ -3,6 +3,10 @@ Name: reflex-dom-core Version: 0.6.0.0 Synopsis: Functional Reactive Web Apps with Reflex Description: + Web applications without callbacks or side-effects. + Reflex-DOM brings the power of functional reactive programming (FRP) to the web. + Build HTML and other Document Object Model (DOM) data with a pure functional interface. + . Reflex-DOM is a Functional Reactive web framework based on the Reflex FRP engine: . . The @reflex-dom@ package is a small wrapper around the @reflex-dom-core@ package. It pulls in the diff --git a/reflex-dom/reflex-dom.cabal b/reflex-dom/reflex-dom.cabal index a2fe668..3ca4722 100644 --- a/reflex-dom/reflex-dom.cabal +++ b/reflex-dom/reflex-dom.cabal @@ -3,6 +3,10 @@ Name: reflex-dom Version: 0.6.0.0 Synopsis: Functional Reactive Web Apps with Reflex Description: + Web applications without callbacks or side-effects. + Reflex-DOM brings the power of functional reactive programming (FRP) to the web. + Build HTML and other Document Object Model (DOM) data with a pure functional interface. + . Reflex-DOM is a Functional Reactive web framework based on the Reflex FRP engine: . . The @reflex-dom@ package is a small wrapper around the @reflex-dom-core@ package. It pulls in the From cad93f39869d72b215b77c20138f9687cb629fe8 Mon Sep 17 00:00:00 2001 From: Elliot Cameron Date: Mon, 15 Jun 2020 14:36:29 -0400 Subject: [PATCH 3/4] Update badges in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b301440..f4dbeb2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## [Reflex-DOM](https://reflex-frp.org) -[![Hackage](https://img.shields.io/hackage/v/reflex-dom.svg)](http://hackage.haskell.org/package/reflex-dom) +[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/reflex-dom.svg)](https://hackage.haskell.org/package/reflex-dom) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/reflex-dom/badge)](https://matrix.hackage.haskell.org/#/package/reflex-dom) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/reflex-frp/reflex-dom/LICENSE) Web applications without callbacks or side-effects. Reflex-DOM brings the power of [Functional Reactive Programming (FRP)](https://wiki.haskell.org/Functional_Reactive_Programming) to the web. Build [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) and other [Document Object Model (DOM)](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) data with a pure functional interface. From e4914124fa92e6af5aebb51722b746c942a68118 Mon Sep 17 00:00:00 2001 From: Elliot Cameron Date: Mon, 15 Jun 2020 14:45:02 -0400 Subject: [PATCH 4/4] Fix link to LICENSE and update copyright years --- LICENSE | 12 ++++++++++++ README.md | 2 +- chrome-test-utils/LICENSE | 2 +- reflex-dom-core/LICENSE | 2 +- reflex-dom/LICENSE | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ee5b036 --- /dev/null +++ b/LICENSE @@ -0,0 +1,12 @@ +Copyright (c) 2020, Obsidian Systems LLC +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index f4dbeb2..8056732 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## [Reflex-DOM](https://reflex-frp.org) -[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/reflex-dom.svg)](https://hackage.haskell.org/package/reflex-dom) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/reflex-dom/badge)](https://matrix.hackage.haskell.org/#/package/reflex-dom) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/reflex-frp/reflex-dom/LICENSE) +[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/reflex-dom.svg)](https://hackage.haskell.org/package/reflex-dom) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/reflex-dom/badge)](https://matrix.hackage.haskell.org/#/package/reflex-dom) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/reflex-frp/reflex-dom/blob/master/LICENSE) Web applications without callbacks or side-effects. Reflex-DOM brings the power of [Functional Reactive Programming (FRP)](https://wiki.haskell.org/Functional_Reactive_Programming) to the web. Build [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) and other [Document Object Model (DOM)](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) data with a pure functional interface. diff --git a/chrome-test-utils/LICENSE b/chrome-test-utils/LICENSE index 3ac53ef..ee5b036 100644 --- a/chrome-test-utils/LICENSE +++ b/chrome-test-utils/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2019, Obsidian Systems LLC +Copyright (c) 2020, Obsidian Systems LLC All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/reflex-dom-core/LICENSE b/reflex-dom-core/LICENSE index afd285a..ee5b036 100644 --- a/reflex-dom-core/LICENSE +++ b/reflex-dom-core/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015, Obsidian Systems LLC +Copyright (c) 2020, Obsidian Systems LLC All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/reflex-dom/LICENSE b/reflex-dom/LICENSE index afd285a..ee5b036 100644 --- a/reflex-dom/LICENSE +++ b/reflex-dom/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015, Obsidian Systems LLC +Copyright (c) 2020, Obsidian Systems LLC All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: