distil 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +28 -0
- data/VERSION +1 -0
- data/bin/distil +45 -0
- data/distil.gemspec +586 -0
- data/lib/bootstrap-template.js +56 -0
- data/lib/configurable.rb +125 -0
- data/lib/file-set.rb +42 -0
- data/lib/file-types/css-file.rb +75 -0
- data/lib/file-types/html-file.rb +11 -0
- data/lib/file-types/javascript-file.rb +98 -0
- data/lib/file-types/json-file.rb +14 -0
- data/lib/file-types/nib-file.rb +9 -0
- data/lib/jsdoc.conf +18 -0
- data/lib/jsl.conf +121 -0
- data/lib/project.rb +96 -0
- data/lib/source-file.rb +181 -0
- data/lib/target.rb +96 -0
- data/lib/task.rb +239 -0
- data/lib/tasks/copy-task.rb +21 -0
- data/lib/tasks/css-task.rb +18 -0
- data/lib/tasks/javascript-task.rb +125 -0
- data/lib/tasks/multiple-output-task.rb +134 -0
- data/lib/tasks/nib-task.rb +83 -0
- data/lib/tasks/output-task.rb +73 -0
- data/lib/tasks/single-output-task.rb +83 -0
- data/lib/tasks/test-task.rb +280 -0
- data/lib/test/HtmlTestReporter.js +127 -0
- data/lib/test/Test.js +248 -0
- data/lib/test/TestReporter.js +79 -0
- data/lib/test/TestRunner.js +132 -0
- data/lib/test/browser.rb +97 -0
- data/lib/test/scriptwrapper.html +10 -0
- data/lib/test/unittest.html +127 -0
- data/vendor/Makefile +35 -0
- data/vendor/extconf.rb +3 -0
- data/vendor/jsdoc-extras/plugins/distil-plugin.js +142 -0
- data/vendor/jsdoc-extras/plugins/interface-plugin.js +36 -0
- data/vendor/jsdoc-extras/templates/coherent/allclasses.tmpl +17 -0
- data/vendor/jsdoc-extras/templates/coherent/allfiles.tmpl +53 -0
- data/vendor/jsdoc-extras/templates/coherent/class.tmpl +803 -0
- data/vendor/jsdoc-extras/templates/coherent/index.tmpl +37 -0
- data/vendor/jsdoc-extras/templates/coherent/publish.js +242 -0
- data/vendor/jsdoc-extras/templates/coherent/showdown.js +421 -0
- data/vendor/jsdoc-extras/templates/coherent/static/code-footer.html +3 -0
- data/vendor/jsdoc-extras/templates/coherent/static/code-header.html +7 -0
- data/vendor/jsdoc-extras/templates/coherent/static/default.css +297 -0
- data/vendor/jsdoc-extras/templates/coherent/static/header.html +2 -0
- data/vendor/jsdoc-extras/templates/coherent/static/index.html +19 -0
- data/vendor/jsdoc-extras/templates/coherent/symbol.tmpl +35 -0
- data/vendor/jsdoc-toolkit/README.txt +183 -0
- data/vendor/jsdoc-toolkit/app/frame/Chain.js +102 -0
- data/vendor/jsdoc-toolkit/app/frame/Dumper.js +144 -0
- data/vendor/jsdoc-toolkit/app/frame/Hash.js +84 -0
- data/vendor/jsdoc-toolkit/app/frame/Link.js +171 -0
- data/vendor/jsdoc-toolkit/app/frame/Namespace.js +10 -0
- data/vendor/jsdoc-toolkit/app/frame/Opt.js +134 -0
- data/vendor/jsdoc-toolkit/app/frame/Reflection.js +26 -0
- data/vendor/jsdoc-toolkit/app/frame/String.js +93 -0
- data/vendor/jsdoc-toolkit/app/frame/Testrun.js +129 -0
- data/vendor/jsdoc-toolkit/app/frame.js +33 -0
- data/vendor/jsdoc-toolkit/app/handlers/FOODOC.js +26 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC/DomReader.js +159 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js +16 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC/XMLParse.js +292 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC.js +26 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/DocComment.js +204 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/DocTag.js +300 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/JsDoc.js +126 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/JsPlate.js +109 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Lang.js +144 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Parser.js +144 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/PluginManager.js +33 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Symbol.js +644 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/SymbolSet.js +241 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/TextStream.js +41 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Token.js +18 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/TokenReader.js +332 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/TokenStream.js +133 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Util.js +32 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Walker.js +499 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC.js +106 -0
- data/vendor/jsdoc-toolkit/app/main.js +129 -0
- data/vendor/jsdoc-toolkit/app/plugins/commentSrcJson.js +20 -0
- data/vendor/jsdoc-toolkit/app/plugins/frameworkPrototype.js +16 -0
- data/vendor/jsdoc-toolkit/app/plugins/functionCall.js +10 -0
- data/vendor/jsdoc-toolkit/app/plugins/publishSrcHilite.js +54 -0
- data/vendor/jsdoc-toolkit/app/plugins/symbolLink.js +10 -0
- data/vendor/jsdoc-toolkit/app/plugins/tagParamConfig.js +31 -0
- data/vendor/jsdoc-toolkit/app/plugins/tagSynonyms.js +43 -0
- data/vendor/jsdoc-toolkit/app/run.js +348 -0
- data/vendor/jsdoc-toolkit/app/t/TestDoc.js +144 -0
- data/vendor/jsdoc-toolkit/app/t/runner.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/addon.js +24 -0
- data/vendor/jsdoc-toolkit/app/test/anon_inner.js +14 -0
- data/vendor/jsdoc-toolkit/app/test/augments.js +31 -0
- data/vendor/jsdoc-toolkit/app/test/augments2.js +26 -0
- data/vendor/jsdoc-toolkit/app/test/borrows.js +46 -0
- data/vendor/jsdoc-toolkit/app/test/borrows2.js +23 -0
- data/vendor/jsdoc-toolkit/app/test/config.js +22 -0
- data/vendor/jsdoc-toolkit/app/test/constructs.js +18 -0
- data/vendor/jsdoc-toolkit/app/test/encoding.js +10 -0
- data/vendor/jsdoc-toolkit/app/test/encoding_other.js +12 -0
- data/vendor/jsdoc-toolkit/app/test/event.js +54 -0
- data/vendor/jsdoc-toolkit/app/test/exports.js +14 -0
- data/vendor/jsdoc-toolkit/app/test/functions_anon.js +39 -0
- data/vendor/jsdoc-toolkit/app/test/functions_nested.js +33 -0
- data/vendor/jsdoc-toolkit/app/test/global.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/globals.js +25 -0
- data/vendor/jsdoc-toolkit/app/test/ignore.js +10 -0
- data/vendor/jsdoc-toolkit/app/test/inner.js +16 -0
- data/vendor/jsdoc-toolkit/app/test/jsdoc_test.js +477 -0
- data/vendor/jsdoc-toolkit/app/test/lend.js +33 -0
- data/vendor/jsdoc-toolkit/app/test/memberof.js +19 -0
- data/vendor/jsdoc-toolkit/app/test/memberof2.js +38 -0
- data/vendor/jsdoc-toolkit/app/test/memberof3.js +33 -0
- data/vendor/jsdoc-toolkit/app/test/memberof_constructor.js +17 -0
- data/vendor/jsdoc-toolkit/app/test/module.js +17 -0
- data/vendor/jsdoc-toolkit/app/test/name.js +19 -0
- data/vendor/jsdoc-toolkit/app/test/namespace_nested.js +23 -0
- data/vendor/jsdoc-toolkit/app/test/nocode.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/oblit_anon.js +20 -0
- data/vendor/jsdoc-toolkit/app/test/overview.js +20 -0
- data/vendor/jsdoc-toolkit/app/test/param_inline.js +37 -0
- data/vendor/jsdoc-toolkit/app/test/params_optional.js +8 -0
- data/vendor/jsdoc-toolkit/app/test/prototype.js +17 -0
- data/vendor/jsdoc-toolkit/app/test/prototype_nested.js +9 -0
- data/vendor/jsdoc-toolkit/app/test/prototype_oblit.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/prototype_oblit_constructor.js +24 -0
- data/vendor/jsdoc-toolkit/app/test/public.js +10 -0
- data/vendor/jsdoc-toolkit/app/test/scripts/code.js +5 -0
- data/vendor/jsdoc-toolkit/app/test/scripts/notcode.txt +5 -0
- data/vendor/jsdoc-toolkit/app/test/shared.js +42 -0
- data/vendor/jsdoc-toolkit/app/test/shared2.js +2 -0
- data/vendor/jsdoc-toolkit/app/test/shortcuts.js +22 -0
- data/vendor/jsdoc-toolkit/app/test/static_this.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/synonyms.js +31 -0
- data/vendor/jsdoc-toolkit/app/test/tosource.js +23 -0
- data/vendor/jsdoc-toolkit/app/test/variable_redefine.js +14 -0
- data/vendor/jsdoc-toolkit/app/test.js +342 -0
- data/vendor/jsdoc-toolkit/changes.txt +116 -0
- data/vendor/jsdoc-toolkit/conf/sample.conf +31 -0
- data/vendor/jsdoc-toolkit/java/build.xml +36 -0
- data/vendor/jsdoc-toolkit/java/build_1.4.xml +36 -0
- data/vendor/jsdoc-toolkit/java/classes/js.jar +0 -0
- data/vendor/jsdoc-toolkit/java/src/JsDebugRun.java +21 -0
- data/vendor/jsdoc-toolkit/java/src/JsRun.java +21 -0
- data/vendor/jsdoc-toolkit/jsdebug.jar +0 -0
- data/vendor/jsdoc-toolkit/jsrun.jar +0 -0
- data/vendor/jsdoc-toolkit/jsrun.sh +53 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/allclasses.tmpl +17 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/allfiles.tmpl +56 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/class.tmpl +649 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/index.tmpl +39 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/publish.js +201 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/code-footer.html +3 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/code-header.html +14 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/default.css +162 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/header.html +2 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/index.html +19 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/symbol.tmpl +35 -0
- data/vendor/jsl-0.3.0/src/JavaScriptLintAPI.cpp +333 -0
- data/vendor/jsl-0.3.0/src/JavaScriptLintAPI.h +86 -0
- data/vendor/jsl-0.3.0/src/Makefile.in +375 -0
- data/vendor/jsl-0.3.0/src/Makefile.ref +372 -0
- data/vendor/jsl-0.3.0/src/README.html +826 -0
- data/vendor/jsl-0.3.0/src/SpiderMonkey.rsp +12 -0
- data/vendor/jsl-0.3.0/src/_jsl_online.php +223 -0
- data/vendor/jsl-0.3.0/src/config/AIX4.1.mk +65 -0
- data/vendor/jsl-0.3.0/src/config/AIX4.2.mk +64 -0
- data/vendor/jsl-0.3.0/src/config/AIX4.3.mk +65 -0
- data/vendor/jsl-0.3.0/src/config/Darwin.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/Darwin1.3.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/Darwin1.4.mk +41 -0
- data/vendor/jsl-0.3.0/src/config/Darwin5.2.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/Darwin5.3.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/HP-UXB.10.10.mk +77 -0
- data/vendor/jsl-0.3.0/src/config/HP-UXB.10.20.mk +77 -0
- data/vendor/jsl-0.3.0/src/config/HP-UXB.11.00.mk +80 -0
- data/vendor/jsl-0.3.0/src/config/IRIX.mk +87 -0
- data/vendor/jsl-0.3.0/src/config/IRIX5.3.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.1.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.2.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.3.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.5.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/Linux_All.mk +103 -0
- data/vendor/jsl-0.3.0/src/config/Mac_OS10.0.mk +82 -0
- data/vendor/jsl-0.3.0/src/config/OSF1V4.0.mk +72 -0
- data/vendor/jsl-0.3.0/src/config/OSF1V5.0.mk +69 -0
- data/vendor/jsl-0.3.0/src/config/SunOS4.1.4.mk +101 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.3.mk +91 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.4.mk +92 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.5.1.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.5.mk +87 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.6.mk +89 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.7.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.8.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.9.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/WINNT4.0.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/WINNT5.0.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/WINNT5.1.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/WINNT5.2.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/dgux.mk +64 -0
- data/vendor/jsl-0.3.0/src/config.mk +166 -0
- data/vendor/jsl-0.3.0/src/editline/Makefile.ref +144 -0
- data/vendor/jsl-0.3.0/src/editline/README +83 -0
- data/vendor/jsl-0.3.0/src/editline/editline.3 +175 -0
- data/vendor/jsl-0.3.0/src/editline/editline.c +1369 -0
- data/vendor/jsl-0.3.0/src/editline/editline.h +135 -0
- data/vendor/jsl-0.3.0/src/editline/sysunix.c +182 -0
- data/vendor/jsl-0.3.0/src/editline/unix.h +82 -0
- data/vendor/jsl-0.3.0/src/fdlibm/Makefile.in +127 -0
- data/vendor/jsl-0.3.0/src/fdlibm/Makefile.ref +192 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_acos.c +147 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_acosh.c +105 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_asin.c +156 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_atan2.c +165 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_atanh.c +110 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_cosh.c +133 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_exp.c +202 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_fmod.c +184 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_gamma.c +71 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_gamma_r.c +70 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_hypot.c +173 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_j0.c +524 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_j1.c +523 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_jn.c +315 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_lgamma.c +71 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_lgamma_r.c +347 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_log.c +184 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_log10.c +134 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_pow.c +386 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_rem_pio2.c +221 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_remainder.c +120 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_scalb.c +89 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_sinh.c +122 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_sqrt.c +497 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.dsp +160 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.h +273 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.mak +1453 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.mdp +0 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_cos.c +134 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_rem_pio2.c +354 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_sin.c +114 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_standard.c +785 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_tan.c +170 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_asinh.c +101 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_atan.c +175 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_cbrt.c +133 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_ceil.c +120 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_copysign.c +72 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_cos.c +118 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_erf.c +356 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_expm1.c +267 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_fabs.c +70 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_finite.c +71 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_floor.c +121 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_frexp.c +99 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_ilogb.c +85 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_isnan.c +74 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_ldexp.c +66 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_lib_version.c +73 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_log1p.c +211 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_logb.c +79 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_matherr.c +64 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_modf.c +132 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_nextafter.c +124 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_rint.c +131 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_scalbn.c +107 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_signgam.c +40 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_significand.c +68 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_sin.c +118 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_tan.c +112 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_tanh.c +122 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_acos.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_acosh.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_asin.c +80 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_atan2.c +79 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_atanh.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_cosh.c +77 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_exp.c +88 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_fmod.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_gamma.c +85 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_gamma_r.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_hypot.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_j0.c +105 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_j1.c +106 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_jn.c +128 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_lgamma.c +85 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_lgamma_r.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_log.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_log10.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_pow.c +99 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_remainder.c +77 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_scalb.c +95 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_sinh.c +77 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_sqrt.c +77 -0
- data/vendor/jsl-0.3.0/src/js.c +2447 -0
- data/vendor/jsl-0.3.0/src/js.dsp +420 -0
- data/vendor/jsl-0.3.0/src/js.mak +4025 -0
- data/vendor/jsl-0.3.0/src/js.mdp +0 -0
- data/vendor/jsl-0.3.0/src/js.msg +291 -0
- data/vendor/jsl-0.3.0/src/js.pkg +2 -0
- data/vendor/jsl-0.3.0/src/js3240.rc +79 -0
- data/vendor/jsl-0.3.0/src/jsOS240.def +654 -0
- data/vendor/jsl-0.3.0/src/jsapi.c +4405 -0
- data/vendor/jsl-0.3.0/src/jsapi.h +1856 -0
- data/vendor/jsl-0.3.0/src/jsarena.c +567 -0
- data/vendor/jsl-0.3.0/src/jsarena.h +302 -0
- data/vendor/jsl-0.3.0/src/jsarray.c +1428 -0
- data/vendor/jsl-0.3.0/src/jsarray.h +77 -0
- data/vendor/jsl-0.3.0/src/jsatom.c +927 -0
- data/vendor/jsl-0.3.0/src/jsatom.h +426 -0
- data/vendor/jsl-0.3.0/src/jsbit.h +113 -0
- data/vendor/jsl-0.3.0/src/jsbool.c +220 -0
- data/vendor/jsl-0.3.0/src/jsbool.h +62 -0
- data/vendor/jsl-0.3.0/src/jsclist.h +139 -0
- data/vendor/jsl-0.3.0/src/jscntxt.c +1036 -0
- data/vendor/jsl-0.3.0/src/jscntxt.h +608 -0
- data/vendor/jsl-0.3.0/src/jscompat.h +57 -0
- data/vendor/jsl-0.3.0/src/jsconfig.h +489 -0
- data/vendor/jsl-0.3.0/src/jsconfig.mk +181 -0
- data/vendor/jsl-0.3.0/src/jscpucfg.c +377 -0
- data/vendor/jsl-0.3.0/src/jscpucfg.h +204 -0
- data/vendor/jsl-0.3.0/src/jsdate.c +2238 -0
- data/vendor/jsl-0.3.0/src/jsdate.h +118 -0
- data/vendor/jsl-0.3.0/src/jsdbgapi.c +1260 -0
- data/vendor/jsl-0.3.0/src/jsdbgapi.h +345 -0
- data/vendor/jsl-0.3.0/src/jsdhash.c +763 -0
- data/vendor/jsl-0.3.0/src/jsdhash.h +579 -0
- data/vendor/jsl-0.3.0/src/jsdtoa.c +3135 -0
- data/vendor/jsl-0.3.0/src/jsdtoa.h +130 -0
- data/vendor/jsl-0.3.0/src/jsemit.c +4851 -0
- data/vendor/jsl-0.3.0/src/jsemit.h +576 -0
- data/vendor/jsl-0.3.0/src/jsexn.c +1084 -0
- data/vendor/jsl-0.3.0/src/jsexn.h +102 -0
- data/vendor/jsl-0.3.0/src/jsfile.c +2610 -0
- data/vendor/jsl-0.3.0/src/jsfile.h +50 -0
- data/vendor/jsl-0.3.0/src/jsfile.msg +89 -0
- data/vendor/jsl-0.3.0/src/jsfun.c +2015 -0
- data/vendor/jsl-0.3.0/src/jsfun.h +158 -0
- data/vendor/jsl-0.3.0/src/jsgc.c +1441 -0
- data/vendor/jsl-0.3.0/src/jsgc.h +230 -0
- data/vendor/jsl-0.3.0/src/jshash.c +471 -0
- data/vendor/jsl-0.3.0/src/jshash.h +152 -0
- data/vendor/jsl-0.3.0/src/jsify.pl +485 -0
- data/vendor/jsl-0.3.0/src/jsinterp.c +4797 -0
- data/vendor/jsl-0.3.0/src/jsinterp.h +302 -0
- data/vendor/jsl-0.3.0/src/jsl-test.js +28 -0
- data/vendor/jsl-0.3.0/src/jsl.c +2371 -0
- data/vendor/jsl-0.3.0/src/jsl.conf +127 -0
- data/vendor/jsl-0.3.0/src/jsl.conf.old +124 -0
- data/vendor/jsl-0.3.0/src/jsl.dsp +242 -0
- data/vendor/jsl-0.3.0/src/jsl.dsw +59 -0
- data/vendor/jsl-0.3.0/src/jslibmath.h +290 -0
- data/vendor/jsl-0.3.0/src/jslock.c +1261 -0
- data/vendor/jsl-0.3.0/src/jslock.h +289 -0
- data/vendor/jsl-0.3.0/src/jslocko.asm +59 -0
- data/vendor/jsl-0.3.0/src/jslog2.c +83 -0
- data/vendor/jsl-0.3.0/src/jslong.c +281 -0
- data/vendor/jsl-0.3.0/src/jslong.h +437 -0
- data/vendor/jsl-0.3.0/src/jsmath.c +477 -0
- data/vendor/jsl-0.3.0/src/jsmath.h +55 -0
- data/vendor/jsl-0.3.0/src/jsnum.c +1148 -0
- data/vendor/jsl-0.3.0/src/jsnum.h +257 -0
- data/vendor/jsl-0.3.0/src/jsobj.c +4066 -0
- data/vendor/jsl-0.3.0/src/jsobj.h +475 -0
- data/vendor/jsl-0.3.0/src/jsopcode.c +2730 -0
- data/vendor/jsl-0.3.0/src/jsopcode.h +275 -0
- data/vendor/jsl-0.3.0/src/jsopcode.tbl +344 -0
- data/vendor/jsl-0.3.0/src/jsosdep.h +127 -0
- data/vendor/jsl-0.3.0/src/jsotypes.h +211 -0
- data/vendor/jsl-0.3.0/src/jsparse.c +4438 -0
- data/vendor/jsl-0.3.0/src/jsparse.h +345 -0
- data/vendor/jsl-0.3.0/src/jsprf.c +1212 -0
- data/vendor/jsl-0.3.0/src/jsprf.h +148 -0
- data/vendor/jsl-0.3.0/src/jsprvtd.h +174 -0
- data/vendor/jsl-0.3.0/src/jspubtd.h +586 -0
- data/vendor/jsl-0.3.0/src/jsregexp.c +3831 -0
- data/vendor/jsl-0.3.0/src/jsregexp.h +180 -0
- data/vendor/jsl-0.3.0/src/jsscan.c +1814 -0
- data/vendor/jsl-0.3.0/src/jsscan.h +267 -0
- data/vendor/jsl-0.3.0/src/jsscope.c +1639 -0
- data/vendor/jsl-0.3.0/src/jsscope.h +389 -0
- data/vendor/jsl-0.3.0/src/jsscript.c +1284 -0
- data/vendor/jsl-0.3.0/src/jsscript.h +179 -0
- data/vendor/jsl-0.3.0/src/jsshell.msg +50 -0
- data/vendor/jsl-0.3.0/src/jsstddef.h +83 -0
- data/vendor/jsl-0.3.0/src/jsstr.c +4502 -0
- data/vendor/jsl-0.3.0/src/jsstr.h +448 -0
- data/vendor/jsl-0.3.0/src/jstypes.h +391 -0
- data/vendor/jsl-0.3.0/src/jsutil.c +157 -0
- data/vendor/jsl-0.3.0/src/jsutil.h +75 -0
- data/vendor/jsl-0.3.0/src/jsxdrapi.c +686 -0
- data/vendor/jsl-0.3.0/src/jsxdrapi.h +193 -0
- data/vendor/jsl-0.3.0/src/liveconnect/LiveConnect.dsp +157 -0
- data/vendor/jsl-0.3.0/src/liveconnect/LiveConnectShell.dsp +120 -0
- data/vendor/jsl-0.3.0/src/liveconnect/LiveConnectShell.dsw +44 -0
- data/vendor/jsl-0.3.0/src/liveconnect/Makefile.in +106 -0
- data/vendor/jsl-0.3.0/src/liveconnect/Makefile.ref +169 -0
- data/vendor/jsl-0.3.0/src/liveconnect/README.html +719 -0
- data/vendor/jsl-0.3.0/src/liveconnect/_jni/netscape_javascript_JSException.h +14 -0
- data/vendor/jsl-0.3.0/src/liveconnect/_jni/netscape_javascript_JSObject.h +155 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/Makefile.in +89 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/Makefile.ref +57 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/Makefile.ref +47 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSException.java +140 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSObject.java +183 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSProxy.java +58 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSRunnable.java +70 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSUtil.java +59 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/Makefile.ref +53 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/AIX4.1.mk +45 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/AIX4.2.mk +45 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/AIX4.3.mk +50 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/HP-UXB.10.10.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/HP-UXB.10.20.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/HP-UXB.11.00.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/IRIX6.2.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/IRIX6.3.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/IRIX6.5.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/Linux_All.mk +73 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/OSF1V4.0.mk +65 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/OSF1V5.0.mk +62 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.5.1.mk +55 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.6.mk +39 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.7.mk +39 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.8.mk +39 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/WINNT4.0.mk +53 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj.c +884 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj.msg +98 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JSObject.c +1379 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaArray.c +481 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaClass.c +749 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaMember.c +186 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaObject.c +1099 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaPackage.c +548 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_array.c +207 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_class.c +765 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_convert.c +954 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_field.c +421 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_hash.c +504 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_hash.h +161 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_method.c +1823 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_nodl.c +1 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_private.h +689 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_simpleapi.c +219 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_utils.c +513 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsjava.h +313 -0
- data/vendor/jsl-0.3.0/src/liveconnect/liveconnect.pkg +3 -0
- data/vendor/jsl-0.3.0/src/liveconnect/netscape_javascript_JSObject.h +155 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnect.cpp +785 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnect.h +197 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnectFactory.cpp +163 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnectFactory.h +76 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsILiveconnect.h +195 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsISecureLiveconnect.h +84 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsISecurityContext.h +135 -0
- data/vendor/jsl-0.3.0/src/liveconnect/win32.order +6 -0
- data/vendor/jsl-0.3.0/src/lock_SunOS.s +114 -0
- data/vendor/jsl-0.3.0/src/perfect.js +39 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.def +6 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.dsp +107 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.pm +318 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.xs +1050 -0
- data/vendor/jsl-0.3.0/src/perlconnect/Makefile.PL +67 -0
- data/vendor/jsl-0.3.0/src/perlconnect/Makefile.ref +152 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnect.dsp +103 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnect.dsw +59 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnect.pm +126 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnectShell.dsp +89 -0
- data/vendor/jsl-0.3.0/src/perlconnect/README.html +345 -0
- data/vendor/jsl-0.3.0/src/perlconnect/bg.jpg +0 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperl.c +1100 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperl.h +52 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperlbuild.pl +81 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperlpvt.h +57 -0
- data/vendor/jsl-0.3.0/src/perlconnect/test.js +73 -0
- data/vendor/jsl-0.3.0/src/perlconnect/test.pl +244 -0
- data/vendor/jsl-0.3.0/src/perlconnect/typemap +121 -0
- data/vendor/jsl-0.3.0/src/plify_jsdhash.sed +31 -0
- data/vendor/jsl-0.3.0/src/prmjtime.c +646 -0
- data/vendor/jsl-0.3.0/src/prmjtime.h +95 -0
- data/vendor/jsl-0.3.0/src/resource.h +15 -0
- data/vendor/jsl-0.3.0/src/rules.mk +193 -0
- data/vendor/jsl-0.3.0/src/win32.order +391 -0
- data/vendor/jsl-0.3.0/tests/conf/always_use_option_explicit.js +4 -0
- data/vendor/jsl-0.3.0/tests/conf/define.js +8 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-1.js +7 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-2.js +8 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-3.js +27 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-4.js +4 -0
- data/vendor/jsl-0.3.0/tests/conf/lambda_assign_requires_semicolon.js +24 -0
- data/vendor/jsl-0.3.0/tests/conf/legacy_control_comments.js +8 -0
- data/vendor/jsl-0.3.0/tests/control_comments/control_comments.js +33 -0
- data/vendor/jsl-0.3.0/tests/control_comments/declare.js +26 -0
- data/vendor/jsl-0.3.0/tests/control_comments/import-overflow.js +9 -0
- data/vendor/jsl-0.3.0/tests/control_comments/import.js +5 -0
- data/vendor/jsl-0.3.0/tests/control_comments/import2.js +2 -0
- data/vendor/jsl-0.3.0/tests/control_comments/invalid_fallthru.js +13 -0
- data/vendor/jsl-0.3.0/tests/control_comments/option_explicit-with.js +12 -0
- data/vendor/jsl-0.3.0/tests/control_comments/option_explicit.js +64 -0
- data/vendor/jsl-0.3.0/tests/errors/unterminated_comment.js +8 -0
- data/vendor/jsl-0.3.0/tests/html/script_tag_in_js_literal.html +14 -0
- data/vendor/jsl-0.3.0/tests/run_tests.pl +71 -0
- data/vendor/jsl-0.3.0/tests/warnings/ambiguous_else_stmt.js +21 -0
- data/vendor/jsl-0.3.0/tests/warnings/ambiguous_nested_stmt.js +66 -0
- data/vendor/jsl-0.3.0/tests/warnings/ambiguous_newline.js +261 -0
- data/vendor/jsl-0.3.0/tests/warnings/anon_no_return_value.js +26 -0
- data/vendor/jsl-0.3.0/tests/warnings/assign_to_function_call.js +16 -0
- data/vendor/jsl-0.3.0/tests/warnings/block_without_braces.js +13 -0
- data/vendor/jsl-0.3.0/tests/warnings/comma_separated_stmts.js +17 -0
- data/vendor/jsl-0.3.0/tests/warnings/comparison_type_conv.js +44 -0
- data/vendor/jsl-0.3.0/tests/warnings/default_not_at_end.js +15 -0
- data/vendor/jsl-0.3.0/tests/warnings/dup_option_explicit.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/duplicate_case_in_switch.js +62 -0
- data/vendor/jsl-0.3.0/tests/warnings/duplicate_formal.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/empty_statement.js +29 -0
- data/vendor/jsl-0.3.0/tests/warnings/equal_as_assign.js +7 -0
- data/vendor/jsl-0.3.0/tests/warnings/inc_dec_within_stmt-ignore.js +21 -0
- data/vendor/jsl-0.3.0/tests/warnings/inc_dec_within_stmt.js +63 -0
- data/vendor/jsl-0.3.0/tests/warnings/jsl_cc_not_understood.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/leading_decimal_point.js +7 -0
- data/vendor/jsl-0.3.0/tests/warnings/legacy_cc_not_understood.js +9 -0
- data/vendor/jsl-0.3.0/tests/warnings/meaningless_block.js +12 -0
- data/vendor/jsl-0.3.0/tests/warnings/misplaced_regex.js +20 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_break.js +87 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_break_for_last_case.js +19 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_default_case.js +51 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_option_explicit.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_semicolon.js +19 -0
- data/vendor/jsl-0.3.0/tests/warnings/multiple_plus_minus.js +10 -0
- data/vendor/jsl-0.3.0/tests/warnings/nested_comment.js +6 -0
- data/vendor/jsl-0.3.0/tests/warnings/no_return_value.js +25 -0
- data/vendor/jsl-0.3.0/tests/warnings/octal_number.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/parseint_missing_radix.js +15 -0
- data/vendor/jsl-0.3.0/tests/warnings/partial_option_explicit.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/redeclared_var.js +10 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/bad_backref.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/deprecated_usage.js +11 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/invalid_backref.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/trailing_comma.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/trailing_comma_in_array.js +8 -0
- data/vendor/jsl-0.3.0/tests/warnings/trailing_decimal_point.js +7 -0
- data/vendor/jsl-0.3.0/tests/warnings/unreachable_code.js +29 -0
- data/vendor/jsl-0.3.0/tests/warnings/use_of_label.js +19 -0
- data/vendor/jsl-0.3.0/tests/warnings/useless_assign.js +20 -0
- data/vendor/jsl-0.3.0/tests/warnings/useless_comparison.js +55 -0
- data/vendor/jsl-0.3.0/tests/warnings/useless_void.js +6 -0
- data/vendor/jsl-0.3.0/tests/warnings/var_hides_arg.js +4 -0
- data/vendor/jsl-0.3.0/tests/warnings/with_statement.js +7 -0
- data/vendor/yuicompressor-2.4.2.jar +0 -0
- metadata +605 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# -*- Mode: makefile -*-
|
|
2
|
+
#
|
|
3
|
+
# ***** BEGIN LICENSE BLOCK *****
|
|
4
|
+
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
5
|
+
#
|
|
6
|
+
# The contents of this file are subject to the Mozilla Public License Version
|
|
7
|
+
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
8
|
+
# the License. You may obtain a copy of the License at
|
|
9
|
+
# http://www.mozilla.org/MPL/
|
|
10
|
+
#
|
|
11
|
+
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
13
|
+
# for the specific language governing rights and limitations under the
|
|
14
|
+
# License.
|
|
15
|
+
#
|
|
16
|
+
# The Original Code is Mozilla Communicator client code, released
|
|
17
|
+
# March 31, 1998.
|
|
18
|
+
#
|
|
19
|
+
# The Initial Developer of the Original Code is
|
|
20
|
+
# Netscape Communications Corporation.
|
|
21
|
+
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
22
|
+
# the Initial Developer. All Rights Reserved.
|
|
23
|
+
#
|
|
24
|
+
# Contributor(s):
|
|
25
|
+
#
|
|
26
|
+
# Alternatively, the contents of this file may be used under the terms of
|
|
27
|
+
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
28
|
+
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
29
|
+
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
30
|
+
# of those above. If you wish to allow use of your version of this file only
|
|
31
|
+
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
32
|
+
# use your version of this file under the terms of the MPL, indicate your
|
|
33
|
+
# decision by deleting the provisions above and replace them with the notice
|
|
34
|
+
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
35
|
+
# the provisions above, a recipient may use your version of this file under
|
|
36
|
+
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
37
|
+
#
|
|
38
|
+
# ***** END LICENSE BLOCK *****
|
|
39
|
+
|
|
40
|
+
#
|
|
41
|
+
# Config for Windows NT using MS Visual C++ (version?)
|
|
42
|
+
#
|
|
43
|
+
|
|
44
|
+
CC = cl
|
|
45
|
+
|
|
46
|
+
RANLIB = echo
|
|
47
|
+
|
|
48
|
+
#.c.o:
|
|
49
|
+
# $(CC) -c -MD $*.d $(CFLAGS) $<
|
|
50
|
+
|
|
51
|
+
CPU_ARCH = x86 # XXX fixme
|
|
52
|
+
GFX_ARCH = win32
|
|
53
|
+
|
|
54
|
+
# MSVC compiler options for both debug/optimize
|
|
55
|
+
# -nologo - suppress copyright message
|
|
56
|
+
# -W3 - Warning level 3
|
|
57
|
+
# -Gm - enable minimal rebuild
|
|
58
|
+
# -Z7 - put debug info into the executable, not in .pdb file
|
|
59
|
+
# -YX - automatic precompiled headers
|
|
60
|
+
# -GX - enable C++ exception support
|
|
61
|
+
WIN_CFLAGS = -nologo -W3 -Fp$(OBJDIR)/js.pch
|
|
62
|
+
|
|
63
|
+
# MSVC compiler options for debug builds linked to MSVCRTD.DLL
|
|
64
|
+
# -MDd - link with MSVCRTD.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
|
|
65
|
+
# -Od - minimal optimization
|
|
66
|
+
WIN_IDG_CFLAGS = -MDd -Od -Z7
|
|
67
|
+
|
|
68
|
+
# MSVC compiler options for debug builds linked to MSVCRT.DLL
|
|
69
|
+
# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
|
|
70
|
+
# -Od - minimal optimization
|
|
71
|
+
WIN_DEBUG_CFLAGS = -MD -Od -Z7
|
|
72
|
+
|
|
73
|
+
# MSVC compiler options for release (optimized) builds
|
|
74
|
+
# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, C-runtime)
|
|
75
|
+
# -O2 - Optimize for speed
|
|
76
|
+
# -G5 - Optimize for Pentium
|
|
77
|
+
WIN_OPT_CFLAGS = -MD -O2
|
|
78
|
+
|
|
79
|
+
ifdef BUILD_OPT
|
|
80
|
+
OPTIMIZER = $(WIN_OPT_CFLAGS)
|
|
81
|
+
else
|
|
82
|
+
ifdef BUILD_IDG
|
|
83
|
+
OPTIMIZER = $(WIN_IDG_CFLAGS)
|
|
84
|
+
else
|
|
85
|
+
OPTIMIZER = $(WIN_DEBUG_CFLAGS)
|
|
86
|
+
endif
|
|
87
|
+
endif
|
|
88
|
+
|
|
89
|
+
OS_CFLAGS = -D_X86_=1 -DXP_WIN -DXP_WIN32 -DWIN32 -D_WINDOWS -D_WIN32 $(WIN_CFLAGS)
|
|
90
|
+
JSDLL_CFLAGS = -DEXPORT_JS_API
|
|
91
|
+
OS_LIBS = -lm -lc
|
|
92
|
+
|
|
93
|
+
PREBUILT_CPUCFG = 1
|
|
94
|
+
USE_MSVC = 1
|
|
95
|
+
|
|
96
|
+
LIB_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
|
|
97
|
+
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
|
|
98
|
+
-subsystem:windows -dll -debug -pdb:none\
|
|
99
|
+
-machine:I386\
|
|
100
|
+
-opt:ref -opt:noicf
|
|
101
|
+
|
|
102
|
+
EXE_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
|
|
103
|
+
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
|
|
104
|
+
-subsystem:console -debug -pdb:none\
|
|
105
|
+
-machine:I386\
|
|
106
|
+
-opt:ref -opt:noicf
|
|
107
|
+
|
|
108
|
+
# CAFEDIR = t:/cafe
|
|
109
|
+
# JCLASSPATH = $(CAFEDIR)/Java/Lib/classes.zip
|
|
110
|
+
# JAVAC = $(CAFEDIR)/Bin/sj.exe
|
|
111
|
+
# JAVAH = $(CAFEDIR)/Java/Bin/javah.exe
|
|
112
|
+
# JCFLAGS = -I$(CAFEDIR)/Java/Include -I$(CAFEDIR)/Java/Include/win32
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# -*- Mode: makefile -*-
|
|
2
|
+
#
|
|
3
|
+
# ***** BEGIN LICENSE BLOCK *****
|
|
4
|
+
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
5
|
+
#
|
|
6
|
+
# The contents of this file are subject to the Mozilla Public License Version
|
|
7
|
+
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
8
|
+
# the License. You may obtain a copy of the License at
|
|
9
|
+
# http://www.mozilla.org/MPL/
|
|
10
|
+
#
|
|
11
|
+
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
13
|
+
# for the specific language governing rights and limitations under the
|
|
14
|
+
# License.
|
|
15
|
+
#
|
|
16
|
+
# The Original Code is Mozilla Communicator client code, released
|
|
17
|
+
# March 31, 1998.
|
|
18
|
+
#
|
|
19
|
+
# The Initial Developer of the Original Code is
|
|
20
|
+
# Netscape Communications Corporation.
|
|
21
|
+
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
22
|
+
# the Initial Developer. All Rights Reserved.
|
|
23
|
+
#
|
|
24
|
+
# Contributor(s):
|
|
25
|
+
#
|
|
26
|
+
# Alternatively, the contents of this file may be used under the terms of
|
|
27
|
+
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
28
|
+
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
29
|
+
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
30
|
+
# of those above. If you wish to allow use of your version of this file only
|
|
31
|
+
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
32
|
+
# use your version of this file under the terms of the MPL, indicate your
|
|
33
|
+
# decision by deleting the provisions above and replace them with the notice
|
|
34
|
+
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
35
|
+
# the provisions above, a recipient may use your version of this file under
|
|
36
|
+
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
37
|
+
#
|
|
38
|
+
# ***** END LICENSE BLOCK *****
|
|
39
|
+
|
|
40
|
+
#
|
|
41
|
+
# Config stuff for Data General DG/UX
|
|
42
|
+
#
|
|
43
|
+
|
|
44
|
+
#
|
|
45
|
+
# Initial DG/UX port by Marc Fraioli (fraioli@dg-rtp.dg.com)
|
|
46
|
+
#
|
|
47
|
+
|
|
48
|
+
AS = as
|
|
49
|
+
CC = gcc
|
|
50
|
+
CCC = g++
|
|
51
|
+
|
|
52
|
+
RANLIB = echo
|
|
53
|
+
|
|
54
|
+
#
|
|
55
|
+
# _DGUX_SOURCE is needed to turn on a lot of stuff in the headers if
|
|
56
|
+
# you're not using DG's compiler. It shouldn't hurt if you are.
|
|
57
|
+
#
|
|
58
|
+
# _POSIX4A_DRAFT10_SOURCE is needed to pick up localtime_r, used in
|
|
59
|
+
# prtime.c
|
|
60
|
+
#
|
|
61
|
+
OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DDGUX -D_DGUX_SOURCE -D_POSIX4A_DRAFT10_SOURCE -DHAVE_LOCALTIME_R
|
|
62
|
+
OS_LIBS = -lsocket -lnsl
|
|
63
|
+
|
|
64
|
+
NOSUCHFILE = /no-such-file
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# -*- Mode: makefile -*-
|
|
2
|
+
#
|
|
3
|
+
# ***** BEGIN LICENSE BLOCK *****
|
|
4
|
+
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
5
|
+
#
|
|
6
|
+
# The contents of this file are subject to the Mozilla Public License Version
|
|
7
|
+
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
8
|
+
# the License. You may obtain a copy of the License at
|
|
9
|
+
# http://www.mozilla.org/MPL/
|
|
10
|
+
#
|
|
11
|
+
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
13
|
+
# for the specific language governing rights and limitations under the
|
|
14
|
+
# License.
|
|
15
|
+
#
|
|
16
|
+
# The Original Code is Mozilla Communicator client code, released
|
|
17
|
+
# March 31, 1998.
|
|
18
|
+
#
|
|
19
|
+
# The Initial Developer of the Original Code is
|
|
20
|
+
# Netscape Communications Corporation.
|
|
21
|
+
# Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
22
|
+
# the Initial Developer. All Rights Reserved.
|
|
23
|
+
#
|
|
24
|
+
# Contributor(s):
|
|
25
|
+
#
|
|
26
|
+
# Alternatively, the contents of this file may be used under the terms of
|
|
27
|
+
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
28
|
+
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
29
|
+
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
30
|
+
# of those above. If you wish to allow use of your version of this file only
|
|
31
|
+
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
32
|
+
# use your version of this file under the terms of the MPL, indicate your
|
|
33
|
+
# decision by deleting the provisions above and replace them with the notice
|
|
34
|
+
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
35
|
+
# the provisions above, a recipient may use your version of this file under
|
|
36
|
+
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
37
|
+
#
|
|
38
|
+
# ***** END LICENSE BLOCK *****
|
|
39
|
+
|
|
40
|
+
ifdef JS_DIST
|
|
41
|
+
DIST = $(JS_DIST)
|
|
42
|
+
else
|
|
43
|
+
DIST = $(DEPTH)/../../dist/$(OBJDIR)
|
|
44
|
+
endif
|
|
45
|
+
|
|
46
|
+
# Set os+release dependent make variables
|
|
47
|
+
OS_ARCH := $(subst /,_,$(shell uname -s | sed /\ /s//_/))
|
|
48
|
+
|
|
49
|
+
# Attempt to differentiate between SunOS 5.4 and x86 5.4
|
|
50
|
+
OS_CPUARCH := $(shell uname -m)
|
|
51
|
+
ifeq ($(OS_CPUARCH),i86pc)
|
|
52
|
+
OS_RELEASE := $(shell uname -r)_$(OS_CPUARCH)
|
|
53
|
+
else
|
|
54
|
+
ifeq ($(OS_ARCH),AIX)
|
|
55
|
+
OS_RELEASE := $(shell uname -v).$(shell uname -r)
|
|
56
|
+
else
|
|
57
|
+
OS_RELEASE := $(shell uname -r)
|
|
58
|
+
endif
|
|
59
|
+
endif
|
|
60
|
+
ifeq ($(OS_ARCH),IRIX64)
|
|
61
|
+
OS_ARCH := IRIX
|
|
62
|
+
endif
|
|
63
|
+
|
|
64
|
+
# Handle output from win32 unames other than Netscape's version
|
|
65
|
+
ifeq (,$(filter-out Windows_95 Windows_98 CYGWIN_95-4.0 CYGWIN_98-4.10, $(OS_ARCH)))
|
|
66
|
+
OS_ARCH := WIN95
|
|
67
|
+
endif
|
|
68
|
+
ifeq ($(OS_ARCH),WIN95)
|
|
69
|
+
OS_ARCH := WINNT
|
|
70
|
+
OS_RELEASE := 4.0
|
|
71
|
+
endif
|
|
72
|
+
ifeq ($(OS_ARCH), Windows_NT)
|
|
73
|
+
OS_ARCH := WINNT
|
|
74
|
+
OS_MINOR_RELEASE := $(shell uname -v)
|
|
75
|
+
ifeq ($(OS_MINOR_RELEASE),00)
|
|
76
|
+
OS_MINOR_RELEASE = 0
|
|
77
|
+
endif
|
|
78
|
+
OS_RELEASE := $(OS_RELEASE).$(OS_MINOR_RELEASE)
|
|
79
|
+
endif
|
|
80
|
+
ifeq (CYGWIN_NT,$(findstring CYGWIN_NT,$(OS_ARCH)))
|
|
81
|
+
OS_RELEASE := $(patsubst CYGWIN_NT-%,%,$(OS_ARCH))
|
|
82
|
+
OS_ARCH := WINNT
|
|
83
|
+
endif
|
|
84
|
+
ifeq ($(OS_ARCH), CYGWIN32_NT)
|
|
85
|
+
OS_ARCH := WINNT
|
|
86
|
+
endif
|
|
87
|
+
|
|
88
|
+
# Virtually all Linux versions are identical.
|
|
89
|
+
# Any distinctions are handled in linux.h
|
|
90
|
+
ifeq ($(OS_ARCH),Linux)
|
|
91
|
+
OS_CONFIG := Linux_All
|
|
92
|
+
else
|
|
93
|
+
ifeq ($(OS_ARCH),dgux)
|
|
94
|
+
OS_CONFIG := dgux
|
|
95
|
+
else
|
|
96
|
+
ifeq ($(OS_ARCH),Darwin)
|
|
97
|
+
OS_CONFIG := Darwin
|
|
98
|
+
else
|
|
99
|
+
OS_CONFIG := $(OS_ARCH)$(OS_OBJTYPE)$(OS_RELEASE)
|
|
100
|
+
endif
|
|
101
|
+
endif
|
|
102
|
+
endif
|
|
103
|
+
|
|
104
|
+
ASFLAGS =
|
|
105
|
+
DEFINES =
|
|
106
|
+
|
|
107
|
+
ifeq ($(OS_ARCH), WINNT)
|
|
108
|
+
INSTALL = nsinstall
|
|
109
|
+
CP = cp
|
|
110
|
+
else
|
|
111
|
+
INSTALL = $(DEPTH)/../../dist/$(OBJDIR)/bin/nsinstall
|
|
112
|
+
CP = cp
|
|
113
|
+
endif
|
|
114
|
+
|
|
115
|
+
ifdef BUILD_OPT
|
|
116
|
+
OPTIMIZER = -O
|
|
117
|
+
DEFINES += -UDEBUG -DNDEBUG -UDEBUG_$(shell whoami)
|
|
118
|
+
OBJDIR_TAG = _OPT
|
|
119
|
+
else
|
|
120
|
+
ifdef USE_MSVC
|
|
121
|
+
OPTIMIZER = -Zi
|
|
122
|
+
else
|
|
123
|
+
OPTIMIZER = -g
|
|
124
|
+
endif
|
|
125
|
+
DEFINES += -DDEBUG -DDEBUG_$(shell whoami)
|
|
126
|
+
OBJDIR_TAG = _DBG
|
|
127
|
+
endif
|
|
128
|
+
|
|
129
|
+
SO_SUFFIX = so
|
|
130
|
+
|
|
131
|
+
NS_USE_NATIVE = 1
|
|
132
|
+
|
|
133
|
+
# Java stuff
|
|
134
|
+
CLASSDIR = $(DEPTH)/liveconnect/classes
|
|
135
|
+
JAVA_CLASSES = $(patsubst %.java,%.class,$(JAVA_SRCS))
|
|
136
|
+
TARGETS += $(addprefix $(CLASSDIR)/$(OBJDIR)/$(JARPATH)/, $(JAVA_CLASSES))
|
|
137
|
+
JAVAC = $(JDK)/bin/javac
|
|
138
|
+
JAVAC_FLAGS = -classpath "$(CLASSPATH)" -d $(CLASSDIR)/$(OBJDIR)
|
|
139
|
+
ifeq ($(OS_ARCH), WINNT)
|
|
140
|
+
SEP = ;
|
|
141
|
+
else
|
|
142
|
+
SEP = :
|
|
143
|
+
endif
|
|
144
|
+
CLASSPATH = $(JDK)/lib/classes.zip$(SEP)$(CLASSDIR)/$(OBJDIR)
|
|
145
|
+
|
|
146
|
+
include $(DEPTH)/config/$(OS_CONFIG).mk
|
|
147
|
+
|
|
148
|
+
# Name of the binary code directories
|
|
149
|
+
ifdef BUILD_IDG
|
|
150
|
+
OBJDIR = $(OS_CONFIG)$(OBJDIR_TAG).OBJD
|
|
151
|
+
else
|
|
152
|
+
OBJDIR = $(OS_CONFIG)$(OBJDIR_TAG).OBJ
|
|
153
|
+
endif
|
|
154
|
+
VPATH = $(OBJDIR)
|
|
155
|
+
|
|
156
|
+
# Automatic make dependencies file
|
|
157
|
+
DEPENDENCIES = $(OBJDIR)/.md
|
|
158
|
+
|
|
159
|
+
LCJAR = js15lc30.jar
|
|
160
|
+
|
|
161
|
+
# Library name
|
|
162
|
+
LIBDIR := lib
|
|
163
|
+
ifeq ($(CPU_ARCH), x86_64)
|
|
164
|
+
LIBDIR := lib64
|
|
165
|
+
endif
|
|
166
|
+
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# -*- Mode: makefile -*-
|
|
2
|
+
#
|
|
3
|
+
# ***** BEGIN LICENSE BLOCK *****
|
|
4
|
+
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
5
|
+
#
|
|
6
|
+
# The contents of this file are subject to the Mozilla Public License Version
|
|
7
|
+
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
8
|
+
# the License. You may obtain a copy of the License at
|
|
9
|
+
# http://www.mozilla.org/MPL/
|
|
10
|
+
#
|
|
11
|
+
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
+
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
13
|
+
# for the specific language governing rights and limitations under the
|
|
14
|
+
# License.
|
|
15
|
+
#
|
|
16
|
+
# The Original Code is Mozilla Communicator client code, released
|
|
17
|
+
# March 31, 1998.
|
|
18
|
+
#
|
|
19
|
+
# The Initial Developer of the Original Code is
|
|
20
|
+
# Simmule Turner and Rich Salz.
|
|
21
|
+
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
22
|
+
# the Initial Developer. All Rights Reserved.
|
|
23
|
+
#
|
|
24
|
+
# Contributor(s):
|
|
25
|
+
#
|
|
26
|
+
# Alternatively, the contents of this file may be used under the terms of
|
|
27
|
+
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
28
|
+
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
29
|
+
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
30
|
+
# of those above. If you wish to allow use of your version of this file only
|
|
31
|
+
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
32
|
+
# use your version of this file under the terms of the MPL, indicate your
|
|
33
|
+
# decision by deleting the provisions above and replace them with the notice
|
|
34
|
+
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
35
|
+
# the provisions above, a recipient may use your version of this file under
|
|
36
|
+
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
37
|
+
#
|
|
38
|
+
# ***** END LICENSE BLOCK *****
|
|
39
|
+
|
|
40
|
+
#
|
|
41
|
+
# Copyright 1992,1993 Simmule Turner and Rich Salz. All rights reserved.
|
|
42
|
+
#
|
|
43
|
+
# This software is not subject to any license of the American Telephone
|
|
44
|
+
# and Telegraph Company or of the Regents of the University of California.
|
|
45
|
+
#
|
|
46
|
+
# Permission is granted to anyone to use this software for any purpose on
|
|
47
|
+
# any computer system, and to alter it and redistribute it freely, subject
|
|
48
|
+
# to the following restrictions:
|
|
49
|
+
# 1. The authors are not responsible for the consequences of use of this
|
|
50
|
+
# software, no matter how awful, even if they arise from flaws in it.
|
|
51
|
+
# 2. The origin of this software must not be misrepresented, either by
|
|
52
|
+
# explicit claim or by omission. Since few users ever read sources,
|
|
53
|
+
# credits must appear in the documentation.
|
|
54
|
+
# 3. Altered versions must be plainly marked as such, and must not be
|
|
55
|
+
# misrepresented as being the original software. Since few users
|
|
56
|
+
# ever read sources, credits must appear in the documentation.
|
|
57
|
+
# 4. This notice may not be removed or altered.
|
|
58
|
+
#
|
|
59
|
+
|
|
60
|
+
#
|
|
61
|
+
# Unix makefile for editline library.
|
|
62
|
+
#
|
|
63
|
+
|
|
64
|
+
## Set your options:
|
|
65
|
+
## -DANSI_ARROWS ANSI arrows keys work like emacs.
|
|
66
|
+
## -DHAVE_STDLIB Have <stdlib.h>.
|
|
67
|
+
## -DHAVE_TCGETATTR Have tcgetattr(), tcsetattr().
|
|
68
|
+
## -DHAVE_TERMIO Have "struct termio" and <termio.h>
|
|
69
|
+
## (If neither of above two, we use <sgttyb.h> and BSD ioctl's)
|
|
70
|
+
## -DHIDE Make static functions static (non debug).
|
|
71
|
+
## -DHIST_SIZE=n History size.
|
|
72
|
+
## -DNEED_STRDUP Don't have strdup().
|
|
73
|
+
## -DUNIQUE_HISTORY Don't save command if same as last one.
|
|
74
|
+
## -DUSE_DIRENT Use <dirent.h>, not <sys/dir.h>?
|
|
75
|
+
## -DUSE_TERMCAP Use the termcap library for terminal size
|
|
76
|
+
## see LDFLAGS, below, if you set this.
|
|
77
|
+
## -DNEED_PERROR Don't have perror() (used in testit)
|
|
78
|
+
|
|
79
|
+
## If you have -DUSE_TERMCAP, set this as appropriate:
|
|
80
|
+
#LDFLAGS = -ltermlib
|
|
81
|
+
#LDFLAGS = -ltermcap
|
|
82
|
+
|
|
83
|
+
DEFS = -DANSI_ARROWS -DHAVE_TCGETATTR -DHIDE -DUSE_DIRENT -DSYS_UNIX \
|
|
84
|
+
-DHAVE_STDLIB -DUNIQUE_HISTORY
|
|
85
|
+
|
|
86
|
+
DEPTH = ..
|
|
87
|
+
|
|
88
|
+
include $(DEPTH)/config.mk
|
|
89
|
+
|
|
90
|
+
#
|
|
91
|
+
# Default IEEE libm
|
|
92
|
+
#
|
|
93
|
+
CFLAGS += -DXP_UNIX $(OPTIMIZER) $(OS_CFLAGS) $(DEFINES) $(INCLUDES) \
|
|
94
|
+
-DJSFILE $(XCFLAGS) $(DEFS)
|
|
95
|
+
|
|
96
|
+
INCFILES = editline.h
|
|
97
|
+
.INIT: $(INCFILES)
|
|
98
|
+
.KEEP_STATE:
|
|
99
|
+
EDITLINE_CFILES = editline.c sysunix.c
|
|
100
|
+
|
|
101
|
+
EDITLINE_OBJS = $(addprefix $(OBJDIR)/, $(EDITLINE_CFILES:.c=.o))
|
|
102
|
+
|
|
103
|
+
LIBRARY = $(OBJDIR)/libedit.a
|
|
104
|
+
|
|
105
|
+
define MAKE_OBJDIR
|
|
106
|
+
if test ! -d $(@D); then rm -rf $(@D); mkdir $(@D); fi
|
|
107
|
+
endef
|
|
108
|
+
|
|
109
|
+
all: $(LIBRARY)
|
|
110
|
+
|
|
111
|
+
export:
|
|
112
|
+
|
|
113
|
+
$(OBJDIR)/%: %.c
|
|
114
|
+
@$(MAKE_OBJDIR)
|
|
115
|
+
$(CC) -o $@ $(CFLAGS) $*.c $(LDFLAGS)
|
|
116
|
+
|
|
117
|
+
$(OBJDIR)/%.o: %.c
|
|
118
|
+
@$(MAKE_OBJDIR)
|
|
119
|
+
$(CC) -o $@ -c $(CFLAGS) $*.c
|
|
120
|
+
|
|
121
|
+
$(OBJDIR)/%.o: %.s
|
|
122
|
+
@$(MAKE_OBJDIR)
|
|
123
|
+
$(AS) -o $@ $(ASFLAGS) $*.s
|
|
124
|
+
|
|
125
|
+
$(LIBRARY): $(EDITLINE_OBJS)
|
|
126
|
+
$(AR) rv $@ $?
|
|
127
|
+
$(RANLIB) $@
|
|
128
|
+
|
|
129
|
+
#libedit.a : $(EDITLINE_OBJS)
|
|
130
|
+
# $(AR) cru $(OBJDIR)/libedit.a $(EDITLINE_OBJS)
|
|
131
|
+
# $(RANLIB) $(OBJDIR)/libedit.a
|
|
132
|
+
|
|
133
|
+
clean:
|
|
134
|
+
rm -rf $(EDITLINE_OBJS)
|
|
135
|
+
|
|
136
|
+
clobber:
|
|
137
|
+
rm -rf $(EDITLINE_OBJS) $(LIBRARY) $(DEPENDENCIES)
|
|
138
|
+
|
|
139
|
+
SUFFIXES: .i
|
|
140
|
+
%.i: %.c
|
|
141
|
+
$(CC) -C -E $(CFLAGS) $< > $*.i
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
The files in this directory provide simple line-editing and history
|
|
2
|
+
support for the standalone javascript engine, through the 'editline'
|
|
3
|
+
library.
|
|
4
|
+
|
|
5
|
+
editline has only been enabled for those platforms on which it is
|
|
6
|
+
known to build; to try it on a different platform, define JS_EDITLINE
|
|
7
|
+
before building. Line editing (and js.c) is not a supported feature
|
|
8
|
+
of the javascript library, so your mileage my vary.
|
|
9
|
+
|
|
10
|
+
The editline API is a compatible subset of the FSF readline API; if
|
|
11
|
+
you have readline installed and would like to link to that instead,
|
|
12
|
+
define JS_READLINE. Note that the readline library is distributed
|
|
13
|
+
under the GPL, so any resulting binaries are not legally
|
|
14
|
+
distributable.
|
|
15
|
+
|
|
16
|
+
The editline files used here have been modified to work with the js
|
|
17
|
+
build system and to quiet some compiler warnings, and also to remove
|
|
18
|
+
filename-completion support.
|
|
19
|
+
|
|
20
|
+
If anyone knows of a more recent version of these files, or a site on
|
|
21
|
+
which they are being maintained, please let me know!
|
|
22
|
+
|
|
23
|
+
Mike McCabe, mccabe@netscape.com
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
The original README file distributed with the editline library follows.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
This is a line-editing library. It can be linked into almost any
|
|
31
|
+
program to provide command-line editing and recall.
|
|
32
|
+
|
|
33
|
+
It is call-compatible with the FSF readline library, but it is a
|
|
34
|
+
fraction of the size (and offers fewer features). It does not use
|
|
35
|
+
standard I/O. It is distributed under a "C News-like" copyright.
|
|
36
|
+
|
|
37
|
+
Configuration is done in the Makefile. Type "make testit" to get
|
|
38
|
+
a small slow shell for testing.
|
|
39
|
+
|
|
40
|
+
An earlier version was distributed with Byron's rc. Principal
|
|
41
|
+
changes over that version include:
|
|
42
|
+
Faster.
|
|
43
|
+
Is eight-bit clean (thanks to brendan@cs.widener.edu)
|
|
44
|
+
Written in K&R C, but ANSI compliant (gcc all warnings)
|
|
45
|
+
Propagates EOF properly; rc trip test now passes
|
|
46
|
+
Doesn't need or use or provide memmove.
|
|
47
|
+
More robust
|
|
48
|
+
Calling sequence changed to be compatible with readline.
|
|
49
|
+
Test program, new manpage, better configuration
|
|
50
|
+
More system-independant; includes Unix and OS-9 support.
|
|
51
|
+
|
|
52
|
+
This contains some changes since the posting to comp.sources.misc:
|
|
53
|
+
Bugfix for completion on absolute pathnames.
|
|
54
|
+
Better handling of M-n versus showing raw 8bit chars.
|
|
55
|
+
Better signal handling.
|
|
56
|
+
Now supports termios/termio/sgttyb ioctl's.
|
|
57
|
+
Add M-m command to toggle how 8bit data is displayed.
|
|
58
|
+
|
|
59
|
+
There is one known bug:
|
|
60
|
+
History-searching redraws the line wrong if the text
|
|
61
|
+
retrieved is shorter then the prompt.
|
|
62
|
+
|
|
63
|
+
Enjoy,
|
|
64
|
+
Rich $alz
|
|
65
|
+
<rsalz@osf.org>
|
|
66
|
+
|
|
67
|
+
Copyright 1992,1993 Simmule Turner and Rich Salz. All rights reserved.
|
|
68
|
+
|
|
69
|
+
This software is not subject to any license of the American Telephone
|
|
70
|
+
and Telegraph Company or of the Regents of the University of California.
|
|
71
|
+
|
|
72
|
+
Permission is granted to anyone to use this software for any purpose on
|
|
73
|
+
any computer system, and to alter it and redistribute it freely, subject
|
|
74
|
+
to the following restrictions:
|
|
75
|
+
1. The authors are not responsible for the consequences of use of this
|
|
76
|
+
software, no matter how awful, even if they arise from flaws in it.
|
|
77
|
+
2. The origin of this software must not be misrepresented, either by
|
|
78
|
+
explicit claim or by omission. Since few users ever read sources,
|
|
79
|
+
credits must appear in the documentation.
|
|
80
|
+
3. Altered versions must be plainly marked as such, and must not be
|
|
81
|
+
misrepresented as being the original software. Since few users
|
|
82
|
+
ever read sources, credits must appear in the documentation.
|
|
83
|
+
4. This notice may not be removed or altered.
|