├── .gitignore ├── .grunt └── grunt-contrib-jasmine │ ├── boot.js │ ├── es5-shim.js │ ├── jasmine-html.js │ ├── jasmine.css │ ├── jasmine.js │ ├── jasmine_favicon.png │ ├── json2.js │ └── reporter.js ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── _SpecRunner.html ├── bower.json ├── gruntfile.js ├── package.json ├── specs ├── ODataResourcesTest.js ├── ODataTest.js ├── angularresourcesTest.js └── dependencies │ ├── angular-mocks.js │ ├── angular.js │ ├── configuration.js │ └── matchers.js └── src ├── app.js ├── odata.js ├── odatabinaryoperation.js ├── odataexpandpredicate.js ├── odatamethodcall.js ├── odataoperators.js ├── odataorderbystatement.js ├── odatapredicate.js ├── odataproperty.js ├── odataprovider.js ├── odataresources.js └── odatavalue.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.gitignore -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/boot.js -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/es5-shim.js -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/jasmine-html.js -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/jasmine.css -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/jasmine.js -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/jasmine_favicon.png -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/json2.js -------------------------------------------------------------------------------- /.grunt/grunt-contrib-jasmine/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.grunt/grunt-contrib-jasmine/reporter.js -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/README.md -------------------------------------------------------------------------------- /_SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/_SpecRunner.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/bower.json -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/package.json -------------------------------------------------------------------------------- /specs/ODataResourcesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/ODataResourcesTest.js -------------------------------------------------------------------------------- /specs/ODataTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/ODataTest.js -------------------------------------------------------------------------------- /specs/angularresourcesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/angularresourcesTest.js -------------------------------------------------------------------------------- /specs/dependencies/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/dependencies/angular-mocks.js -------------------------------------------------------------------------------- /specs/dependencies/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/dependencies/angular.js -------------------------------------------------------------------------------- /specs/dependencies/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/dependencies/configuration.js -------------------------------------------------------------------------------- /specs/dependencies/matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/specs/dependencies/matchers.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- 1 | angular.module('ODataResources', ['ng']); -------------------------------------------------------------------------------- /src/odata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odata.js -------------------------------------------------------------------------------- /src/odatabinaryoperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odatabinaryoperation.js -------------------------------------------------------------------------------- /src/odataexpandpredicate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odataexpandpredicate.js -------------------------------------------------------------------------------- /src/odatamethodcall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odatamethodcall.js -------------------------------------------------------------------------------- /src/odataoperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odataoperators.js -------------------------------------------------------------------------------- /src/odataorderbystatement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odataorderbystatement.js -------------------------------------------------------------------------------- /src/odatapredicate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odatapredicate.js -------------------------------------------------------------------------------- /src/odataproperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odataproperty.js -------------------------------------------------------------------------------- /src/odataprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odataprovider.js -------------------------------------------------------------------------------- /src/odataresources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odataresources.js -------------------------------------------------------------------------------- /src/odatavalue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnixs/ODataAngularResources/HEAD/src/odatavalue.js --------------------------------------------------------------------------------