From 5c9b2d441264b28f4f8b9c3c547e4e771b8d0d04 Mon Sep 17 00:00:00 2001 From: matasaru Date: Mon, 1 Feb 2021 21:38:48 -0500 Subject: [PATCH 1/2] updated README.md links --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c4a43c8..c2866a3a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://secure.travis-ci.org/daveray/seesaw.png?branch=master)](http://travis-ci.org/daveray/seesaw) +[![Build Status](https://secure.travis-ci.org/clj-commons/seesaw.png?branch=master)](http://travis-ci.org/clj-commons/seesaw) There's now a [Google Group](https://groups.google.com/group/seesaw-clj) for discussion and questions. @@ -8,7 +8,7 @@ There's now a [Google Group](https://groups.google.com/group/seesaw-clj) for dis # Seesaw: Clojure + UI -_*See [the Seesaw Wiki](https://github.com/daveray/seesaw/wiki) and [the Seesaw API Docs](http://daveray.github.com/seesaw/) for more detailed docs. Note that the docs in the code (use the `doc` function!) are always the most up-to-date and trustworthy.*_ +_*See [the Seesaw Wiki](https://github.com/clj-commons/seesaw/wiki) and [the Seesaw API Docs](https://clj-commons.org/seesaw/) for more detailed docs. Note that the docs in the code (use the `doc` function!) are always the most up-to-date and trustworthy.*_ Seesaw is a library/DSL for constructing user interfaces in Clojure. It happens to be built on Swing, but please don't hold that against it. @@ -17,19 +17,19 @@ Seesaw is a library/DSL for constructing user interfaces in Clojure. It happens Seesaw is compatible with Clojure 1.4, but will probably work fine with 1.3 and 1.5. Maybe even 1.2. * Swing knowledge is *not required* for many apps! -* [Construct widgets](https://github.com/daveray/seesaw/wiki/Widgets) with simple functions, e.g. `(listbox :model (range 100))` +* [Construct widgets](https://github.com/clj-commons/seesaw/wiki/Widgets) with simple functions, e.g. `(listbox :model (range 100))` * Support for all of Swing's built-in widgets as well as SwingX. * Support for all of Swing's layout managers as well as MigLayout, and JGoodies Forms * Convenient shortcuts for most properties. For example, `:background :blue` or `:background "#00f"`, or `:size [640 :by 480]`. -* [CSS-style selectors](https://github.com/daveray/seesaw/wiki/Selectors) with same syntax as [Enlive](https://github.com/cgrand/enlive). -* Unified, extensible [event API](https://github.com/daveray/seesaw/wiki/Handling-events) -* Unified, extensible [selection API](https://github.com/daveray/seesaw/wiki/Handling-selection) +* [CSS-style selectors](https://github.com/clj-commons/seesaw/wiki/Selectors) with same syntax as [Enlive](https://github.com/cgrand/enlive). +* Unified, extensible [event API](https://github.com/clj-commons/seesaw/wiki/Handling-events) +* Unified, extensible [selection API](https://github.com/clj-commons/seesaw/wiki/Handling-selection) * [Widget binding](http://blog.darevay.com/2011/07/seesaw-widget-binding/), i.e. map changes from one widget into one or more others in a more functional style. Also integrates with Clojure's reference types. -* [Graphics](https://github.com/daveray/seesaw/wiki/Graphics) -* [i18n](https://github.com/daveray/seesaw/wiki/Resource-bundles-and-i18n) -* An extensive [test suite](https://github.com/daveray/seesaw/tree/master/test/seesaw/test) +* [Graphics](https://github.com/clj-commons/seesaw/wiki/Graphics) +* [i18n](https://github.com/clj-commons/seesaw/wiki/Resource-bundles-and-i18n) +* An extensive [test suite](https://github.com/clj-commons/seesaw/tree/master/test/seesaw/test) -_There are numerous Seesaw examples in [test/seesaw/test/examples](https://github.com/daveray/seesaw/tree/master/test/seesaw/test/examples)._ +_There are numerous Seesaw examples in [test/seesaw/test/examples](https://github.com/clj-commons/seesaw/tree/master/test/seesaw/test/examples)._ ## TL;DR From 73e7d520f8614d63f6f1af2ec79b56e1551f3aad Mon Sep 17 00:00:00 2001 From: matasaru Date: Mon, 1 Feb 2021 21:39:02 -0500 Subject: [PATCH 2/2] updated examples links --- test/seesaw/test/examples/dnd.clj | 2 +- test/seesaw/test/examples/swingx.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/seesaw/test/examples/dnd.clj b/test/seesaw/test/examples/dnd.clj index c98b92bd..04c835be 100644 --- a/test/seesaw/test/examples/dnd.clj +++ b/test/seesaw/test/examples/dnd.clj @@ -54,7 +54,7 @@ ; A list box that imports and exports URIs, like with a browser (defn url-target [] (listbox - :model [(java.net.URI. "http://github.com/daveray/seesaw")] + :model [(java.net.URI. "http://github.com/clj-commons/seesaw")] :drag-enabled? true :drop-mode :insert :transfer-handler diff --git a/test/seesaw/test/examples/swingx.clj b/test/seesaw/test/examples/swingx.clj index 168b8c9d..f8227206 100644 --- a/test/seesaw/test/examples/swingx.clj +++ b/test/seesaw/test/examples/swingx.clj @@ -41,7 +41,7 @@ :hyperlink (demo "(seesaw.swingx/hyperlink)" "A button that looks like a hyperlink. If given the :uri option, opens in browser. Can have an :icon if you like." (vertical-panel :items [ - (hyperlink :uri "http://github.com/daveray/seesaw" :text "This link opens Seesaw's github page in a browser") + (hyperlink :uri "http://github.com/clj-commons/seesaw" :text "This link opens Seesaw's github page in a browser") :separator (hyperlink :action (action :name "This link acts like a button" :handler (fn [e] (alert "You clicked the link"))