├── .bowerrc ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── app ├── asset │ ├── indoor │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── spritesheet-2x.png │ │ │ ├── spritesheet.png │ │ │ └── spritesheet.svg │ │ ├── indoor-src.css │ │ └── indoor-src.js │ ├── leaflet.draw │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── spritesheet-2x.png │ │ │ ├── spritesheet.png │ │ │ └── spritesheet.svg │ │ ├── leaflet.draw-src.css │ │ ├── leaflet.draw-src.js │ │ ├── leaflet.draw-src.map │ │ ├── leaflet.draw.css │ │ └── leaflet.draw.js │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ └── sidebar │ │ ├── css │ │ ├── leaflet-sidebar.css │ │ └── leaflet-sidebar.min.css │ │ └── js │ │ ├── leaflet-sidebar.js │ │ └── leaflet-sidebar.min.js ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ ├── ajax-loader.gif │ ├── create_edit.gif │ ├── feature.gif │ ├── history.gif │ ├── logo.png │ ├── logo_g.png │ ├── logo_green.png │ ├── refer.gif │ ├── showChanges.gif │ └── users.gif ├── scripts │ ├── apiServices │ │ └── apiService.js │ ├── app.js │ ├── controllers │ │ ├── main.js │ │ ├── start.js │ │ └── tester.js │ ├── featureHistory │ │ └── featureHistoryDirective.js │ ├── featureProperties │ │ └── featurePropertiesDirective.js │ ├── indoor │ │ ├── drawEditService.js │ │ └── indoorService.js │ ├── leaflet │ │ ├── mapDirective.js │ │ ├── mapDrawEventsService.js │ │ ├── mapHandlerService.js │ │ ├── mapMovementEventsService.js │ │ └── synchronizeMapService.js │ ├── sidebar │ │ ├── DataImportService.js │ │ ├── chatDirective.js │ │ ├── chatMessageDirective.js │ │ ├── historyDirective.js │ │ ├── sidebarDirective.js │ │ ├── toolsDirective.js │ │ ├── tooltipService.js │ │ └── userService.js │ ├── socketio │ │ ├── socketStatusDirective.js │ │ └── socketio.js │ └── tester │ │ └── testerService.js ├── styles │ └── main.css └── views │ ├── 404.html │ ├── index.html │ └── partials │ ├── chat.html │ ├── featurehistory.html │ ├── featureproperties.html │ ├── history.html │ ├── main.html │ ├── sidebar.html │ ├── start.html │ ├── tester.html │ └── tools.html ├── bower.json ├── gulpfile.js ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json ├── server ├── .jshintrc ├── config │ ├── config.js │ ├── env │ │ ├── development.js │ │ ├── production.js │ │ └── test.js │ └── express.js ├── controllers │ └── index.js ├── couchdb.js ├── dbHandler.js ├── dbHelper.js ├── index.js ├── indoor.js ├── model.js ├── presets │ ├── categories.json │ ├── defaults.json │ ├── fields.json │ └── presets.json ├── routes.js └── socketio.js └── test ├── .jshintrc ├── runner.html └── spec ├── controllers └── main.js ├── leaflet ├── mapHandlerService.js └── synchronizeMapService.js └── toolbox └── userService.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /app/asset/indoor/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/layers-2x.png -------------------------------------------------------------------------------- /app/asset/indoor/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/layers.png -------------------------------------------------------------------------------- /app/asset/indoor/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/asset/indoor/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/marker-icon.png -------------------------------------------------------------------------------- /app/asset/indoor/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/marker-shadow.png -------------------------------------------------------------------------------- /app/asset/indoor/images/spritesheet-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/spritesheet-2x.png -------------------------------------------------------------------------------- /app/asset/indoor/images/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/spritesheet.png -------------------------------------------------------------------------------- /app/asset/indoor/images/spritesheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/images/spritesheet.svg -------------------------------------------------------------------------------- /app/asset/indoor/indoor-src.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/indoor-src.css -------------------------------------------------------------------------------- /app/asset/indoor/indoor-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/indoor/indoor-src.js -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/layers-2x.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/layers.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/marker-icon.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/marker-shadow.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/spritesheet-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/spritesheet-2x.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/spritesheet.png -------------------------------------------------------------------------------- /app/asset/leaflet.draw/images/spritesheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/images/spritesheet.svg -------------------------------------------------------------------------------- /app/asset/leaflet.draw/leaflet.draw-src.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/leaflet.draw-src.css -------------------------------------------------------------------------------- /app/asset/leaflet.draw/leaflet.draw-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/leaflet.draw-src.js -------------------------------------------------------------------------------- /app/asset/leaflet.draw/leaflet.draw-src.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/leaflet.draw-src.map -------------------------------------------------------------------------------- /app/asset/leaflet.draw/leaflet.draw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/leaflet.draw.css -------------------------------------------------------------------------------- /app/asset/leaflet.draw/leaflet.draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet.draw/leaflet.draw.js -------------------------------------------------------------------------------- /app/asset/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /app/asset/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/images/layers.png -------------------------------------------------------------------------------- /app/asset/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/asset/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /app/asset/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /app/asset/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /app/asset/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /app/asset/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/leaflet.css -------------------------------------------------------------------------------- /app/asset/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/leaflet.js -------------------------------------------------------------------------------- /app/asset/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /app/asset/sidebar/css/leaflet-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/sidebar/css/leaflet-sidebar.css -------------------------------------------------------------------------------- /app/asset/sidebar/css/leaflet-sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/sidebar/css/leaflet-sidebar.min.css -------------------------------------------------------------------------------- /app/asset/sidebar/js/leaflet-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/sidebar/js/leaflet-sidebar.js -------------------------------------------------------------------------------- /app/asset/sidebar/js/leaflet-sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/asset/sidebar/js/leaflet-sidebar.min.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/ajax-loader.gif -------------------------------------------------------------------------------- /app/images/create_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/create_edit.gif -------------------------------------------------------------------------------- /app/images/feature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/feature.gif -------------------------------------------------------------------------------- /app/images/history.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/history.gif -------------------------------------------------------------------------------- /app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/logo.png -------------------------------------------------------------------------------- /app/images/logo_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/logo_g.png -------------------------------------------------------------------------------- /app/images/logo_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/logo_green.png -------------------------------------------------------------------------------- /app/images/refer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/refer.gif -------------------------------------------------------------------------------- /app/images/showChanges.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/showChanges.gif -------------------------------------------------------------------------------- /app/images/users.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/images/users.gif -------------------------------------------------------------------------------- /app/scripts/apiServices/apiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/apiServices/apiService.js -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /app/scripts/controllers/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/controllers/start.js -------------------------------------------------------------------------------- /app/scripts/controllers/tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/controllers/tester.js -------------------------------------------------------------------------------- /app/scripts/featureHistory/featureHistoryDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/featureHistory/featureHistoryDirective.js -------------------------------------------------------------------------------- /app/scripts/featureProperties/featurePropertiesDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/featureProperties/featurePropertiesDirective.js -------------------------------------------------------------------------------- /app/scripts/indoor/drawEditService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/indoor/drawEditService.js -------------------------------------------------------------------------------- /app/scripts/indoor/indoorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/indoor/indoorService.js -------------------------------------------------------------------------------- /app/scripts/leaflet/mapDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/leaflet/mapDirective.js -------------------------------------------------------------------------------- /app/scripts/leaflet/mapDrawEventsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/leaflet/mapDrawEventsService.js -------------------------------------------------------------------------------- /app/scripts/leaflet/mapHandlerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/leaflet/mapHandlerService.js -------------------------------------------------------------------------------- /app/scripts/leaflet/mapMovementEventsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/leaflet/mapMovementEventsService.js -------------------------------------------------------------------------------- /app/scripts/leaflet/synchronizeMapService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/leaflet/synchronizeMapService.js -------------------------------------------------------------------------------- /app/scripts/sidebar/DataImportService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/DataImportService.js -------------------------------------------------------------------------------- /app/scripts/sidebar/chatDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/chatDirective.js -------------------------------------------------------------------------------- /app/scripts/sidebar/chatMessageDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/chatMessageDirective.js -------------------------------------------------------------------------------- /app/scripts/sidebar/historyDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/historyDirective.js -------------------------------------------------------------------------------- /app/scripts/sidebar/sidebarDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/sidebarDirective.js -------------------------------------------------------------------------------- /app/scripts/sidebar/toolsDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/toolsDirective.js -------------------------------------------------------------------------------- /app/scripts/sidebar/tooltipService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/tooltipService.js -------------------------------------------------------------------------------- /app/scripts/sidebar/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/sidebar/userService.js -------------------------------------------------------------------------------- /app/scripts/socketio/socketStatusDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/socketio/socketStatusDirective.js -------------------------------------------------------------------------------- /app/scripts/socketio/socketio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/socketio/socketio.js -------------------------------------------------------------------------------- /app/scripts/tester/testerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/scripts/tester/testerService.js -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /app/views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/404.html -------------------------------------------------------------------------------- /app/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/index.html -------------------------------------------------------------------------------- /app/views/partials/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/chat.html -------------------------------------------------------------------------------- /app/views/partials/featurehistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/featurehistory.html -------------------------------------------------------------------------------- /app/views/partials/featureproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/featureproperties.html -------------------------------------------------------------------------------- /app/views/partials/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/history.html -------------------------------------------------------------------------------- /app/views/partials/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/main.html -------------------------------------------------------------------------------- /app/views/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/sidebar.html -------------------------------------------------------------------------------- /app/views/partials/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/start.html -------------------------------------------------------------------------------- /app/views/partials/tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/tester.html -------------------------------------------------------------------------------- /app/views/partials/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/app/views/partials/tools.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/karma-e2e.conf.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/package.json -------------------------------------------------------------------------------- /server/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/.jshintrc -------------------------------------------------------------------------------- /server/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/config/config.js -------------------------------------------------------------------------------- /server/config/env/development.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | env: 'development' 5 | }; -------------------------------------------------------------------------------- /server/config/env/production.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | env: 'production' 5 | }; -------------------------------------------------------------------------------- /server/config/env/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | env: 'test' 5 | }; -------------------------------------------------------------------------------- /server/config/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/config/express.js -------------------------------------------------------------------------------- /server/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/controllers/index.js -------------------------------------------------------------------------------- /server/couchdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/couchdb.js -------------------------------------------------------------------------------- /server/dbHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/dbHandler.js -------------------------------------------------------------------------------- /server/dbHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/dbHelper.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/index.js -------------------------------------------------------------------------------- /server/indoor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/indoor.js -------------------------------------------------------------------------------- /server/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/model.js -------------------------------------------------------------------------------- /server/presets/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/presets/categories.json -------------------------------------------------------------------------------- /server/presets/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/presets/defaults.json -------------------------------------------------------------------------------- /server/presets/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/presets/fields.json -------------------------------------------------------------------------------- /server/presets/presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/presets/presets.json -------------------------------------------------------------------------------- /server/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/routes.js -------------------------------------------------------------------------------- /server/socketio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/server/socketio.js -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/test/runner.html -------------------------------------------------------------------------------- /test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/test/spec/controllers/main.js -------------------------------------------------------------------------------- /test/spec/leaflet/mapHandlerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/test/spec/leaflet/mapHandlerService.js -------------------------------------------------------------------------------- /test/spec/leaflet/synchronizeMapService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/test/spec/leaflet/synchronizeMapService.js -------------------------------------------------------------------------------- /test/spec/toolbox/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooq77/cooperative-indoor/HEAD/test/spec/toolbox/userService.js --------------------------------------------------------------------------------