Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
parenscript
parenscript
Commits
72d53cca
Verified
Commit
72d53cca
authored
Jul 07, 2018
by
Vladimir Sedach
Browse files
Clarified that the license is BSD 3-clause. Added SPDX identifiers
parent
c46db2c0
Changes
27
Hide whitespace changes
Inline
Side-by-side
COPYING
View file @
72d53cca
Copyright (c) 2005, Manuel Odendahl <manuel@bl0rg.net>
Copyright (c) 2005, Edward Marco Baringer <mb@bese.it>
Copyright (c) 2007-2013, Vladimir Sedach <vsedach@gmail.com>
Copyright (c) 2008-2009, Travis Cross <tc@travislists.com>
All rights reserved.
Copyright (c) 2005 Manuel Odendahl <manuel@bl0rg.net>
Copyright (c) 2005 Edward Marco Baringer <mb@bese.it>
Copyright (c) 2007-2013, 2018 Vladimir Sedach <vas@oneofus.la>
Copyright (c) 2008, 2009 Travis Cross <tc@travislists.com>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
-
Redistributions of source code must retain the above copyright
1.
Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright
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.
- Neither the names of Manuel Odendahl, Edward Marco Baringer,
Vladimir Sedach, nor BESE, nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
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
...
...
extras/firebug-tracing.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
;; Tracing macro courtesy of William Halliburton
;; <whalliburton@gmail.com>, logs to Firebug console
...
...
@@ -27,4 +29,4 @@
(
console
*trace-level*
,
sname
"returned"
rtn
)
(
return
rtn
)))
(
defun
,
tname
,
args
,@
body
))))
\ No newline at end of file
,@
body
))))
extras/js-expander.el
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; This is an extension to SLIME that is inspired by (and works
;;;; like) the SLIME 'C-c M-m' macroexpansion feature.
...
...
extras/swank-parenscript.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
:parenscript
)
(
defun
parenscript-function-p
(
symbol
)
...
...
@@ -15,4 +17,3 @@
(
values
it
t
))))
#+
+
(
pushnew
'parenscript-arglist
swank::*external-arglist-hooks*
)
parenscript.asd
View file @
72d53cca
...
...
@@ -3,8 +3,8 @@
(
defsystem
:parenscript
:name
"parenscript"
:author
"Manuel Odendahl <manuel@bl0rg.net>"
:maintainer
"Vladimir Sedach <v
sedach@gmail.com
>"
:licence
"BSD"
:maintainer
"Vladimir Sedach <v
as@oneofus.la
>"
:licence
"BSD
-3-Clause
"
:description
"Lisp to JavaScript transpiler"
:components
((
:static-file
"parenscript.asd"
)
...
...
runtime/ps-runtime-lib.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
;;; Script of library functions you can include with your own code to
...
...
src/compilation-interface.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
defparameter
*js-target-version*
"1.3"
)
...
...
src/compiler.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/deprecated-interface.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/function-definition.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/js-dom-symbol-exports.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/js-ir-package.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/lib/ps-dom.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
;; Utilities for accessing standard DOM functionality in a Lispier, PSier way.
...
...
src/lib/ps-html.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
defvar
*ps-html-empty-tag-aware-p*
t
)
...
...
src/lib/ps-loop.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
;;; bind and bind* - macros used for destructuring bindings in PS LOOP
...
...
src/macros.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/namespace.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/non-cl.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
(
in-readtable
:parenscript
)
...
...
src/package.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:cl
)
(
pushnew
:parenscript
*features*
)
...
...
src/parse-lambda-list.lisp
View file @
72d53cca
;; SPDX-License-Identifier: BSD-3-Clause
(
in-package
#:parenscript
)
;;;; This software was taken from the SBCL system, mostly verbatim.
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment