Erste Funktionalität der Menükarte per GET/POST, keine API; Umstrukturierung der Tabelle als Bootstrap-div; HTML/CSS-Cleanup

This commit is contained in:
Sebastian Seedorf
2016-03-25 13:33:42 +01:00
parent 92a5ff8eda
commit f99271ee01
202 changed files with 25173 additions and 853 deletions

35
node_modules/kind-of/LICENSE generated vendored
View File

@@ -1,22 +1,21 @@
The MIT License (MIT)
Copyright (c) 2014-2015, Jon Schlinkert.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

39
node_modules/kind-of/README.md generated vendored
View File

@@ -108,15 +108,40 @@ kindOf(new WeakSet());
kindOf(Symbol('str'));
//=> 'symbol'
kindOf(new Int8Array());
//=> 'int8array'
kindOf(new Uint8Array());
//=> 'uint8array'
kindOf(new Uint8ClampedArray());
//=> 'uint8clampedarray'
kindOf(new Int16Array());
//=> 'int16array'
kindOf(new Uint16Array());
//=> 'uint16array'
kindOf(new Int32Array());
//=> 'int32array'
kindOf(new Uint32Array());
//=> 'uint32array'
kindOf(new Float32Array());
//=> 'float32array'
kindOf(new Float64Array());
//=> 'float64array'
```
## Related projects
* [is-number](https://github.com/jonschlinkert/is-number): Returns true if the value is a number. comprehensive tests.
* [isobject](https://github.com/jonschlinkert/isobject): Returns true if the value is an object and not an array or null.
* [is-primitive](https://github.com/jonschlinkert/is-primitive): Returns `true` if the value is a primitive.
* [is-plain-object](https://github.com/jonschlinkert/is-plain-object): Returns true if an object was created by the `Object` constructor.
* [is-match](https://github.com/jonschlinkert/is-match): Create a matching function from a glob pattern, regex, string, array or function.
* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern.… [more](https://www.npmjs.com/package/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob)
* [is-number](https://www.npmjs.com/package/is-number): Returns true if the value is a number. comprehensive tests. | [homepage](https://github.com/jonschlinkert/is-number)
* [is-primitive](https://www.npmjs.com/package/is-primitive): Returns `true` if the value is a primitive. | [homepage](https://github.com/jonschlinkert/is-primitive)
## Benchmarks
@@ -193,7 +218,7 @@ $ npm i -d && npm test
## Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/kind-of/issues/new)
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/kind-of/issues/new).
## Author
@@ -209,4 +234,4 @@ Released under the MIT license.
***
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on May 31, 2015._
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on November 17, 2015._

29
node_modules/kind-of/index.js generated vendored
View File

@@ -79,6 +79,35 @@ module.exports = function kindOf(val) {
return 'symbol';
}
// typed arrays
if (type === '[object Int8Array]') {
return 'int8array';
}
if (type === '[object Uint8Array]') {
return 'uint8array';
}
if (type === '[object Uint8ClampedArray]') {
return 'uint8clampedarray';
}
if (type === '[object Int16Array]') {
return 'int16array';
}
if (type === '[object Uint16Array]') {
return 'uint16array';
}
if (type === '[object Int32Array]') {
return 'int32array';
}
if (type === '[object Uint32Array]') {
return 'uint32array';
}
if (type === '[object Float32Array]') {
return 'float32array';
}
if (type === '[object Float64Array]') {
return 'float64array';
}
// must be a plain object
return 'object';
};

50
node_modules/kind-of/package.json generated vendored
View File

@@ -1,38 +1,38 @@
{
"_args": [
[
"kind-of@^2.0.0",
"C:\\Users\\IT-134\\Desktop\\PortableGit\\repos\\html5-restaurant\\node_modules\\align-text"
"kind-of@^3.0.2",
"L:\\Git\\repos\\html5-restaurant\\node_modules\\align-text"
]
],
"_from": "kind-of@>=2.0.0 <3.0.0",
"_id": "kind-of@2.0.1",
"_from": "kind-of@>=3.0.2 <4.0.0",
"_id": "kind-of@3.0.2",
"_inCache": true,
"_installable": true,
"_location": "/kind-of",
"_nodeVersion": "0.12.4",
"_nodeVersion": "5.0.0",
"_npmUser": {
"email": "github@sellside.com",
"name": "jonschlinkert"
},
"_npmVersion": "2.10.1",
"_npmVersion": "3.3.6",
"_phantomChildren": {},
"_requested": {
"name": "kind-of",
"raw": "kind-of@^2.0.0",
"rawSpec": "^2.0.0",
"raw": "kind-of@^3.0.2",
"rawSpec": "^3.0.2",
"scope": null,
"spec": ">=2.0.0 <3.0.0",
"spec": ">=3.0.2 <4.0.0",
"type": "range"
},
"_requiredBy": [
"/align-text"
],
"_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz",
"_shasum": "018ec7a4ce7e3a86cb9141be519d24c8faa981b5",
"_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz",
"_shasum": "187db427046e7e90945692e6768668bd6900dea0",
"_shrinkwrap": null,
"_spec": "kind-of@^2.0.0",
"_where": "C:\\Users\\IT-134\\Desktop\\PortableGit\\repos\\html5-restaurant\\node_modules\\align-text",
"_spec": "kind-of@^3.0.2",
"_where": "L:\\Git\\repos\\html5-restaurant\\node_modules\\align-text",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
@@ -45,18 +45,19 @@
},
"description": "Get the native type of a value.",
"devDependencies": {
"ansi-bold": "^0.1.1",
"benchmarked": "^0.1.3",
"chalk": "^0.5.1",
"browserify": "^11.0.1",
"glob": "^4.3.5",
"mocha": "^2.2.5",
"should": "^4.6.1",
"mocha": "*",
"should": "*",
"type-of": "^2.0.1",
"typeof": "^1.0.0"
},
"directories": {},
"dist": {
"shasum": "018ec7a4ce7e3a86cb9141be519d24c8faa981b5",
"tarball": "http://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz"
"shasum": "187db427046e7e90945692e6768668bd6900dea0",
"tarball": "http://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz"
},
"engines": {
"node": ">=0.10.0"
@@ -64,7 +65,7 @@
"files": [
"index.js"
],
"gitHead": "09fcb8b8384932bc5a0009e0b3811998b0387629",
"gitHead": "917a9701737a64abe0f77441c9ef21afca5ab397",
"homepage": "https://github.com/jonschlinkert/kind-of",
"keywords": [
"arguments",
@@ -111,5 +112,14 @@
"prepublish": "browserify -o browser.js -e index.js -s index --bare",
"test": "mocha"
},
"version": "2.0.1"
"verb": {
"related": {
"list": [
"is-glob",
"is-number",
"is-primitive"
]
}
},
"version": "3.0.2"
}