Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dantman/4query
A offsite branch of the popular jQuery JS framework with the aim of providing a cleaner api and more productive policies towards enhancements and extension
https://github.com/dantman/4query
Last synced: about 1 month ago
JSON representation
A offsite branch of the popular jQuery JS framework with the aim of providing a cleaner api and more productive policies towards enhancements and extension
- Host: GitHub
- URL: https://github.com/dantman/4query
- Owner: dantman
- License: gpl-2.0
- Created: 2009-02-14T11:29:40.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2009-03-03T04:30:14.000Z (almost 16 years ago)
- Last Synced: 2023-04-13T15:46:41.370Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://js4query.googlecode.com/
- Size: 4.39 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog.4query.txt
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
----------------------------------------------------
4query - Fork branch of jQuery (New Wave Javascript)
http://4query.org/ http://jquery.com
----------------------------------------------------What you need to build your own 4query:
- Make sure that you have Java installed.If not, go to this page and download "Java Runtime Environment (JRE) 5.0"
http://java.sun.com/javase/downloads/index.jsp- As well you will need GNU make.
Make is pre-installed on most Linux and BSD based distributions
(This should include OS X) and Windows users can get access to it
using cygwin.How to build your own 4query:
In the main directory of the distribution (the one that this file is in), type
the following to make all versions of 4query, the documentation, and the test suite:
makeHere are each of the individual items that are buildable from the Makefile.
make 4query
The standard, uncompressed, 4query code.
Makes: ./dist/4query.jsmake lite
4query without all the additional inline documentation and test cases.
Makes: ./dist/4query.lite.jsmake docs
Builds a complete copy of the documentation, based upon the 4query source.
Makes ./docs/
Open this file in your browser:
./docs/index.xmlmake test
Builds a complete copy of the test suite, based upon the 4query source.
Makes ./test/
Open this file in your browser:
./test/index.htmlFinally, you can remove all the built files using the command:
make cleanAdditionally, if you want to install 4query to a location that is not this
directory, you can specify the PREFIX directory, for example:
make PREFIX=/home/john/test/
OR
make PREFIX=~/www/ docs