Skip to content
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.

Commit

Permalink
Restored changes that were done in initial move to GitHub
Browse files Browse the repository at this point in the history
--HG--
rename : minify => util/minify
  • Loading branch information
Dylan Verheul committed Dec 28, 2011
1 parent 58b0526 commit d22f01a
Show file tree
Hide file tree
Showing 9 changed files with 109 additions and 19 deletions.
8 changes: 0 additions & 8 deletions AUTHORS

This file was deleted.

14 changes: 14 additions & 0 deletions AUTHORS.txt
@@ -0,0 +1,14 @@
AUTHORS
=======

Project owner & Main developer
-------------------------------

* Dylan Verheul <dylan.verheul@gmail.com>

Contributors
------------

* Allart Kooiman <allartk@gmail.com>
* François Schiettecatte <fschiettecatte@gmail.com>

3 changes: 3 additions & 0 deletions CHANGES → CHANGES.txt
@@ -1,6 +1,9 @@
CHANGES

2011-12-27
* Added Apache v2 as valid license
* Added LICENSE file
* Moved to GitHub
* Cleaned up some code

2011-12-26
Expand Down
13 changes: 13 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,13 @@
jquery-autocomplete licenses
============================

You can use this software (jquery-autocomplete) with any of these licenses, if you comply with the conditions stated in the selected license(s).

MIT like jQuery
License: http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt

GPL like jQuery
License: http://github.com/jquery/jquery/blob/master/GPL-LICENSE.txt

Apache License, Version 2.0
License: http://www.apache.org/licenses/LICENSE-2.0.txt
10 changes: 0 additions & 10 deletions README

This file was deleted.

31 changes: 31 additions & 0 deletions README.md
@@ -0,0 +1,31 @@
jquery-autocomplete
===================

The original jQuery autocompleter.

Goal
----

Assisting the user with choosing a value from a list (either on server or on client) by showing available values based on keyboard input. This is known as autocompletion.

Home
----

This project lives at https://github.com/dyve/jquery-autocomplete.

Install
-------

* Copy the files in the src directory to your server.
* See doc/jquery.autocomplete.txt for more information.

Dependencies
------------

jquery-autocomplete only required jQuery to be installed.

Bugs
----

* Please report bugs and issues on GitHub.
* Issues are at https://github.com/dyve/jquery-autocomplete/issues
47 changes: 47 additions & 0 deletions package.json
@@ -0,0 +1,47 @@
{
"name": "autocomplete",
"version": "3.0.0",
"title": "jQuery Autocomplete",
"author": {
"name": "Dylan Verheul",
"url": "http://github.com/dyve",
"email": "dylan@dyve.net"
},
"licenses": [
{
"type": "MIT"
},
{
"type": "GPL"
},
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"dependencies": {
"jquery": "1"
},
"description": "Assisting the user with choosing a value from a list (either on server or on client) by showing available values based on keyboard input",
"keywords": [
"autocomplete",
"autocompleter",
"combobox",
"dropdown",
"autofill"
],
"homepage": "https://github.com/dyve/jquery-autocomplete",
"contributors": [
{
"name": "Allart Kooiman",
"email": "allartk@gmail.com"
},
{
"name": "François Schiettecatte",
"email": "fschiettecatte@gmail.com"
}
],
"files": [
"src/"
]
}
2 changes: 1 addition & 1 deletion src/jquery.autocomplete.js
@@ -1,7 +1,7 @@
/*!
* jQuery Autocompleter
* jquery.autocomplete.js
* http://code.google.com/p/jquery-autocomplete/
* https://github.com/dyve/jquery-autocomplete
* Copyright 2011, Dylan Verheul
* Licensed under the MIT license
*/
Expand Down
File renamed without changes.

0 comments on commit d22f01a

Please sign in to comment.