Check-in Number:
|
5465 | |
Date: |
2006-Jul-22 18:33:39 (local)
2006-Jul-22 16:33:39 (UTC) |
User: | rse |
Branch: | |
Comment: |
cleanup texts |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/js/Makefile.in 1.7 -> 1.8
--- Makefile.in 2006/07/22 15:49:14 1.7
+++ Makefile.in 2006/07/22 16:33:39 1.8
@@ -1,9 +1,8 @@
##
## OSSP js - JavaScript Engine
-## Copyright (c) 2006 Ralf S. Engelschall <rse@engelschall.com>
-## Copyright (c) 2006 The OSSP Project <http://www.ossp.org/>
+## Copyright (c) 1998-2006 Mozilla <http://www.mozilla.org/>
##
-## This file is part of OSSP js, a packaged version of the Mozilla JavaScript
+## This file is part of OSSP js, a repackaging of the Mozilla JavaScript
## reference implementation, which can found at http://www.ossp.org/pkg/lib/js/
##
## Permission to use, copy, modify, and distribute this software for
|
|
ossp-pkg/js/README 1.3 -> 1.4
--- README 2006/07/22 15:41:58 1.3
+++ README 2006/07/22 16:33:39 1.4
@@ -10,51 +10,50 @@
ABSTRACT
- OSSP js is a 1:1 repackaging of the Mozilla SpiderMonkey JavaScript
- C engine. It is fully JavaScript 1.6 and ECMAScript 3 compliant.
-
- JavaScript is a high-level programming language. Brendan Eich
- originally invented JavaScript under the name Livescript at Netscape
- Communications in 1995. The language is heavily influenced by other
- languages like Java, C, and Perl. JavaScript was standardized by ECMA
- and ISO as ECMAScript. JavaScript 1.5 is identical to ECMAScript 3
- (ECMA-262) and ISO/IEC 16262:2002.
-
- - stand-alone distribution
- - Autoconf build environment
- - automated Perl-to-JS and JS-to-Perl (PERLCONNECT) build support
- - automated CLI line editing (EDITLINE) build support
- - libjs contains both JS library and fdlibm library
- - all symbols of JS library and fdlibm library are namespace protected (JS_ and js_)
+ OSSP js is a stand-alone repackaging of the JavaScript (JS)
+ programming language reference implementation from Mozilla (aka
+ "JSRef" or "SpiderMonkey"). The reason for this distribution is
+ to provide a small and fully stand-alone distribution providing a
+ portable and more flexible build environment based on GNU autoconf,
+ GNU libtool and GNU shtool, including support for easy JavaScript
+ build-time feature set selection (ECMA-3, JS-1.5, JS-1.6) and optional
+ line editing and JS-to-Perl binding support during building the
+ command line interface. Additionally, the C API in "libjs" contains
+ both the JavaScript engine and its required Sun math library and with
+ all internal symbols protected under the "js" namespace. Finally,
+ a pkg-config(1) specification is provided to allow applications to
+ easily build with the JavaScript C API.
COPYRIGHT AND LICENSE
- Copyright (c) 1998-2006 Mozilla Foundation <http://www.mozilla.org/>
- Copyright (c) 2006 Ralf S. Engelschall <rse@engelschall.com>
- Copyright (c) 2006 The OSSP Project <http://www.ossp.org/>
+ Copyright (c) 1998-2006 Mozilla <http://www.mozilla.org/>
- This file is part of OSSP js, a version of the Mozilla JavaScript
+ This file is part of OSSP js, a repackaging of the Mozilla JavaScript
reference implementation, which can found at http://www.ossp.org/pkg/lib/js/
- The code is covered by either MPL 1.1, GPL 2.0 or LGPL 2.1
+ The content of this distribution is licensed under the Mozilla
+ Public License (MPL) 1.1 (see http://www.mozilla.org/MPL/) or
+ alternatively the GNU General Public License (GPL) 2.0 (see
+ http://www.gnu.org/licenses/gpl.html) or the GNU Lesser General Public
+ License (LGPL) 2.1 (see http://www.gnu.org/licenses/lgpl.html).
- HOME AND DOCUMENTATION
+ HOME
- The documentation and latest release can be found on
+ The latest release can be found on
o http://www.ossp.org/pkg/lib/js/
o ftp://ftp.ossp.org/pkg/lib/js/
SEE ALSO
- http://www.mozilla.org/js/
- http://www.mozilla.org/js/language/
- http://www.mozilla.org/js/spidermonkey/
- http://www.ecma-international.org/publications/standards/Ecma-262.htm
- http://developer.mozilla.org/en/docs/JavaScript_C_Engine_Embedder's_Guide
- http://developer.mozilla.org/en/docs/JSAPI_Reference
- http://lxr.mozilla.org/mozilla/source/js/src
- http://lxr.mozilla.org/mozilla/source/js/src/README.html
- http://www.jibbering.com/faq/
- http://www.faqts.com/knowledge_base/index.phtml/fid/53/
+ o http://www.mozilla.org/js/
+ o http://www.mozilla.org/js/language/
+ o http://www.mozilla.org/js/spidermonkey/
+ o http://www.ecma-international.org/publications/standards/Ecma-262.htm
+ o http://developer.mozilla.org/en/docs/JavaScript_C_Engine_Embedder's_Guide
+ o http://developer.mozilla.org/en/docs/JSAPI_Reference
+ o http://lxr.mozilla.org/mozilla/source/js/src
+ o http://lxr.mozilla.org/mozilla/source/js/src/README.html
+ o http://www.jibbering.com/faq/
+ o http://www.faqts.com/knowledge_base/index.phtml/fid/53/
|
|
ossp-pkg/js/configure.ac 1.6 -> 1.7
--- configure.ac 2006/07/22 16:16:23 1.6
+++ configure.ac 2006/07/22 16:33:39 1.7
@@ -1,9 +1,8 @@
dnl ##
dnl ## OSSP js - JavaScript Engine
-dnl ## Copyright (c) 2006 Ralf S. Engelschall <rse@engelschall.com>
-dnl ## Copyright (c) 2006 The OSSP Project <http://www.ossp.org/>
+dnl ## Copyright (c) 1998-2006 Mozilla <http://www.mozilla.org/>
dnl ##
-dnl ## This file is part of OSSP js, a packaged version of the Mozilla JavaScript
+dnl ## This file is part of OSSP js, a repackaging of the Mozilla JavaScript
dnl ## reference implementation, which can found at http://www.ossp.org/pkg/lib/js/
dnl ##
dnl ## Permission to use, copy, modify, and distribute this software for
|
|