From d22f01a03df4fb5361a2d8ff851cf0011363550b Mon Sep 17 00:00:00 2001 From: Dylan Verheul Date: Wed, 28 Dec 2011 13:33:53 +0100 Subject: [PATCH] Restored changes that were done in initial move to GitHub --HG-- rename : minify => util/minify --- AUTHORS | 8 ------- AUTHORS.txt | 14 ++++++++++++ CHANGES => CHANGES.txt | 3 +++ LICENSE.txt | 13 +++++++++++ README | 10 -------- README.md | 31 +++++++++++++++++++++++++ package.json | 47 ++++++++++++++++++++++++++++++++++++++ src/jquery.autocomplete.js | 2 +- minify => util/minify | 0 9 files changed, 109 insertions(+), 19 deletions(-) delete mode 100644 AUTHORS create mode 100644 AUTHORS.txt rename CHANGES => CHANGES.txt (90%) create mode 100644 LICENSE.txt delete mode 100644 README create mode 100644 README.md create mode 100644 package.json rename minify => util/minify (100%) diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index 2ab2283..0000000 --- a/AUTHORS +++ /dev/null @@ -1,8 +0,0 @@ -AUTHORS - -PROJECT OWNER & MAIN DEVELOPER: -Dylan Verheul - -CONTRIBUTORS: -Allart Kooiman -François Schiettecatte diff --git a/AUTHORS.txt b/AUTHORS.txt new file mode 100644 index 0000000..2dd22c3 --- /dev/null +++ b/AUTHORS.txt @@ -0,0 +1,14 @@ +AUTHORS +======= + +Project owner & Main developer +------------------------------- + +* Dylan Verheul + +Contributors +------------ + +* Allart Kooiman +* François Schiettecatte + diff --git a/CHANGES b/CHANGES.txt similarity index 90% rename from CHANGES rename to CHANGES.txt index dfd0571..97c55eb 100644 --- a/CHANGES +++ b/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 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..775c6f8 --- /dev/null +++ b/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 diff --git a/README b/README deleted file mode 100644 index 4903838..0000000 --- a/README +++ /dev/null @@ -1,10 +0,0 @@ -README - -Please visit http://code.google.com/p/jquery-autocomplete/ for more information. - -INSTALLATION -* Copy the files in the src directory to your server. -* See doc/jquery.autocomplete.txt for more information. - -BUGS -* Please report bugs and issues on Google Code diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac407ec --- /dev/null +++ b/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 diff --git a/package.json b/package.json new file mode 100644 index 0000000..cf50776 --- /dev/null +++ b/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/" + ] +} \ No newline at end of file diff --git a/src/jquery.autocomplete.js b/src/jquery.autocomplete.js index 42a82d4..3686c52 100644 --- a/src/jquery.autocomplete.js +++ b/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 */ diff --git a/minify b/util/minify similarity index 100% rename from minify rename to util/minify