Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and
https://github.com/racket/racket/blob/master/racket/src/LICENSE-MIT.txt
for the full text of the licenses.

This repository incorporates code from Tiny CLOS which is copyright
Xerox. See the file tiny-clos.rkt for the license, which is similar to
the MIT License.
This repository incorporates code from Tiny CLOS, which is copyright
Xerox and released under a variant of the Xerox License. See the file
tiny-clos.rkt for the full text of the license, which is similar to
the MIT License.
6 changes: 6 additions & 0 deletions info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,9 @@
(define pkg-desc "The implementation of the Swindle language")

(define pkg-authors '(eli))

(define license
;; TODO: Update this if https://github.com/spdx/license-list-XML/pull/1346
;; concludes that the Tiny CLOS license should be assigned a different
;; license rather than Xerox.
'(Xerox AND (Apache-2.0 OR MIT)))
39 changes: 20 additions & 19 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

This is the Swindle Reference Manual.

Swindle is a collection of modules that extend PLT Scheme with many
Swindle is a collection of modules that extend Racket with many
additional features. The main feature which started this project is a
CLOS-like object system based on Tiny-CLOS from Xerox, but there is a
lot more -- see the feature list below for a rough picture. Swindle is
now part of PLT Scheme.
now part of the main Racket distribution.


====< Feature List >====================================================
Expand Down Expand Up @@ -131,27 +131,28 @@ Swindle environment.
variables, in a format that help-desk can use. (Not included, an HTML
manual is created instead.)

* copying.txt
Full copyright text (LGPL).


====< Copyright Notice >================================================

Copyright (C) 1998-2014 Eli Barzilay ([email protected])

This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Swindle, including this document, is dual-licensed under the under the
Apache License, version 2.0, and the MIT license, at your option. See
the files:
https://github.com/racket/racket/blob/master/racket/src/LICENSE-APACHE.txt
and
https://github.com/racket/racket/blob/master/racket/src/LICENSE-MIT.txt
for the full text of the licenses.

Swindle incorporates code from Tiny CLOS, which is copyright Xerox and
released under a variant of the Xerox License. See the file
`tiny-clos.rkt' for the full text of the license, which is similar to
the MIT License.

Unless required by applicable law or agreed to in writing, software
distributed under these licenses is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the licenses for the specific language governing permissions and
limitations under each license.

====< * >===============================================================