From fc8f9516692345c24dfb250a72a2af71f93b65d0 Mon Sep 17 00:00:00 2001 From: "Steve L. Nyemba" Date: Fri, 1 May 2015 12:11:17 -0500 Subject: [PATCH] documentation update --- README.md | 21 ++++++++++++--------- dom.js | 27 ++++++++++++++------------- 2 files changed, 26 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index f31338f..3ba4b2e 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,16 @@ Simple Javascript eXtension Framework The simple Javascript eXtension framework (jx in short) implements wrappers around common tasks performed on DOM object, JSON object and implements various utilities like design patterns for easy handling of collections as well as mathematic functions and some basic machine learning techniques and models. Jx doesn't get in the way of other frameworks like jQuery; Dojo; Mootools; Backbone; Boostrap. We put in a conerted effort to keep it simple. +dom.js: +Handling of DOM objects will rely on DOM object identifiers (ID) with a few exceptions. +The focus of a dom object is mostly centered around a single DOM object, -dom.js: Handles common tasks around a dom object with a simple interface -Example: - - - -value = jx.dom.get.value('dropdown') +We advise using utils.js in order to handle collections of DOM objects as utils.js implements various utilities and industry standard design patterns + +This implementation is designed by W3C specifications of HTML5 and will integrate well with other frameworks that do so. +-- In addition we tried to mildly specify preconditions for executions of functions + +rpc.js: +utils.js: +ext/math.js: +ext/ml.js: \ No newline at end of file diff --git a/dom.js b/dom.js index 96cf73f..fda6840 100644 --- a/dom.js +++ b/dom.js @@ -1,17 +1,18 @@ /** - * Javascript-x framework version 1.0, - * (c) 2012 - 2014, The Phi Technology LLC, https://the-phi.com - * Steve L. Nyemba - * - * Handling of DOM objects will rely on DOM object identifiers (ID) with a few exceptions. - * The focus of a dom object is mostly centered around a single DOM object, - * We advise using utils.js in order to handle collections of DOM objects as utils.js implements various utilities and industry standard design patterns - * - * This implementation is designed by W3C specifications of HTML5 and will integrate well with other frameworks that do so. - * In addition we tried to mildly specify preconditions for executions of functions - * - * LICENSE: GPLv3: - * This program comes with absolute NO WARRANTY or implied warranty and is free to use for any purpose: modified, integrated, distributed at will. +* Simple Javascript eXtension - 1.0 +* (c) 2011 - 2015 Steve L. Nyemba, steve@the-phi.com +* License GPL version 3.0 +* +* +* Handling of DOM objects will rely on DOM object identifiers (ID) with a few exceptions. +* The focus of a dom object is mostly centered around a single DOM object, +* We advise using utils.js in order to handle collections of DOM objects as utils.js implements various utilities and industry standard design patterns +* +* This implementation is designed by W3C specifications of HTML5 and will integrate well with other frameworks that do so. +* In addition we tried to mildly specify preconditions for executions of functions +* +* LICENSE: GPLv3: +* This program comes with absolute NO WARRANTY or implied warranty and is free to use for any purpose: modified, integrated, distributed at will. */ if(!jx){