├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── FleetDB.sql ├── Images.pptx ├── Modules.docx ├── Readme.md ├── mvnw ├── mvnw.cmd ├── node-be ├── connection.js ├── index.js ├── node_modules │ ├── .bin │ │ ├── mime │ │ └── mime 2 │ ├── .package-lock.json │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── bignumber.js │ │ ├── CHANGELOG.md │ │ ├── LICENCE │ │ ├── README.md │ │ ├── bignumber.d.ts │ │ ├── bignumber.js │ │ ├── bignumber.min.js │ │ ├── bignumber.min.js.map │ │ ├── bignumber.mjs │ │ ├── doc │ │ │ └── API.html │ │ └── package.json │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── safe-buffer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── core-util-is │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── util.js │ │ └── package.json │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ ├── node_modules │ │ │ └── safe-buffer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── mysql │ │ ├── Changes.md │ │ ├── License │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── Connection.js │ │ │ ├── ConnectionConfig.js │ │ │ ├── Pool.js │ │ │ ├── PoolCluster.js │ │ │ ├── PoolConfig.js │ │ │ ├── PoolConnection.js │ │ │ ├── PoolNamespace.js │ │ │ ├── PoolSelector.js │ │ │ └── protocol │ │ │ │ ├── Auth.js │ │ │ │ ├── BufferList.js │ │ │ │ ├── PacketHeader.js │ │ │ │ ├── PacketWriter.js │ │ │ │ ├── Parser.js │ │ │ │ ├── Protocol.js │ │ │ │ ├── ResultSet.js │ │ │ │ ├── SqlString.js │ │ │ │ ├── Timer.js │ │ │ │ ├── constants │ │ │ │ ├── charsets.js │ │ │ │ ├── client.js │ │ │ │ ├── errors.js │ │ │ │ ├── field_flags.js │ │ │ │ ├── server_status.js │ │ │ │ ├── ssl_profiles.js │ │ │ │ └── types.js │ │ │ │ ├── packets │ │ │ │ ├── AuthSwitchRequestPacket.js │ │ │ │ ├── AuthSwitchResponsePacket.js │ │ │ │ ├── ClientAuthenticationPacket.js │ │ │ │ ├── ComChangeUserPacket.js │ │ │ │ ├── ComPingPacket.js │ │ │ │ ├── ComQueryPacket.js │ │ │ │ ├── ComQuitPacket.js │ │ │ │ ├── ComStatisticsPacket.js │ │ │ │ ├── EmptyPacket.js │ │ │ │ ├── EofPacket.js │ │ │ │ ├── ErrorPacket.js │ │ │ │ ├── Field.js │ │ │ │ ├── FieldPacket.js │ │ │ │ ├── HandshakeInitializationPacket.js │ │ │ │ ├── LocalDataFilePacket.js │ │ │ │ ├── LocalInfileRequestPacket.js │ │ │ │ ├── OkPacket.js │ │ │ │ ├── OldPasswordPacket.js │ │ │ │ ├── ResultSetHeaderPacket.js │ │ │ │ ├── RowDataPacket.js │ │ │ │ ├── SSLRequestPacket.js │ │ │ │ ├── StatisticsPacket.js │ │ │ │ ├── UseOldPasswordPacket.js │ │ │ │ └── index.js │ │ │ │ └── sequences │ │ │ │ ├── ChangeUser.js │ │ │ │ ├── Handshake.js │ │ │ │ ├── Ping.js │ │ │ │ ├── Query.js │ │ │ │ ├── Quit.js │ │ │ │ ├── Sequence.js │ │ │ │ ├── Statistics.js │ │ │ │ └── index.js │ │ └── package.json │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── process-nextick-args │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── readable-stream │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ │ └── wg-meetings │ │ │ │ └── 2015-01-30.md │ │ ├── duplex-browser.js │ │ ├── duplex.js │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ ├── _stream_writable.js │ │ │ └── internal │ │ │ │ └── streams │ │ │ │ ├── BufferList.js │ │ │ │ ├── destroy.js │ │ │ │ ├── stream-browser.js │ │ │ │ └── stream.js │ │ ├── package.json │ │ ├── passthrough.js │ │ ├── readable-browser.js │ │ ├── readable.js │ │ ├── transform.js │ │ ├── writable-browser.js │ │ └── writable.js │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── sqlstring │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ └── SqlString.js │ │ └── package.json │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── string_decoder │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── string_decoder.js │ │ └── package.json │ ├── toidentifier │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── util-deprecate │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── node.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json ├── package-lock.json └── package.json ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── kindsonthegenius │ │ │ └── fleetmsv2 │ │ │ ├── ApplicationController.java │ │ │ ├── ApplicationSecurityConfig.java │ │ │ ├── Fleetmsv2Application.java │ │ │ ├── accounts │ │ │ ├── controllers │ │ │ │ ├── InvoiceController.java │ │ │ │ ├── InvoiceStatusController.java │ │ │ │ ├── TransactionController.java │ │ │ │ ├── TransactionStatusController.java │ │ │ │ └── TransactionTypeController.java │ │ │ ├── models │ │ │ │ ├── Invoice.java │ │ │ │ ├── InvoiceStatus.java │ │ │ │ ├── Transaction.java │ │ │ │ ├── TransactionStatus.java │ │ │ │ └── TransactionType.java │ │ │ ├── repositories │ │ │ │ ├── InvoiceRepository.java │ │ │ │ ├── InvoiceStatusRepository.java │ │ │ │ ├── TransactionRepository.java │ │ │ │ ├── TransactionStatusRepository.java │ │ │ │ └── TransactionTypeRepository.java │ │ │ └── services │ │ │ │ ├── InvoiceService.java │ │ │ │ ├── InvoiceStatusService.java │ │ │ │ ├── TransactionService.java │ │ │ │ ├── TransactionStatusService.java │ │ │ │ └── TransactionTypeService.java │ │ │ ├── exception │ │ │ ├── InvalidTokenException.java │ │ │ ├── UnknownIdentifierException.java │ │ │ └── UserAlreadyExistException.java │ │ │ ├── fleet │ │ │ ├── controllers │ │ │ │ ├── VehicleController.java │ │ │ │ ├── VehicleHireController.java │ │ │ │ ├── VehicleMaintenanceController.java │ │ │ │ ├── VehicleMakeController.java │ │ │ │ ├── VehicleModelController.java │ │ │ │ ├── VehicleMovementController.java │ │ │ │ ├── VehicleStatusController.java │ │ │ │ └── VehicleTypeController.java │ │ │ ├── models │ │ │ │ ├── Vehicle.java │ │ │ │ ├── VehicleHire.java │ │ │ │ ├── VehicleMaintenance.java │ │ │ │ ├── VehicleMake.java │ │ │ │ ├── VehicleModel.java │ │ │ │ ├── VehicleMovement.java │ │ │ │ ├── VehicleStatus.java │ │ │ │ └── VehicleType.java │ │ │ ├── repositories │ │ │ │ ├── VehicleHireRepository.java │ │ │ │ ├── VehicleMaintenanceRepository.java │ │ │ │ ├── VehicleMakeRepository.java │ │ │ │ ├── VehicleModelRepository.java │ │ │ │ ├── VehicleMovementRepository.java │ │ │ │ ├── VehicleRepository.java │ │ │ │ ├── VehicleStatusRepository.java │ │ │ │ └── VehicleTypeRepository.java │ │ │ └── services │ │ │ │ ├── VehicleHireService.java │ │ │ │ ├── VehicleMaintenanceService.java │ │ │ │ ├── VehicleMakeService.java │ │ │ │ ├── VehicleModelService.java │ │ │ │ ├── VehicleMovementService.java │ │ │ │ ├── VehicleService.java │ │ │ │ ├── VehicleStatusService.java │ │ │ │ └── VehicleTypeService.java │ │ │ ├── helpdesk │ │ │ ├── controllers │ │ │ │ ├── TicketController.java │ │ │ │ └── TicketStatusController.java │ │ │ ├── models │ │ │ │ ├── Ticket.java │ │ │ │ └── TicketStatus.java │ │ │ ├── repositories │ │ │ │ ├── TicketRepository.java │ │ │ │ └── TicketStatusRepository.java │ │ │ └── services │ │ │ │ ├── TicketService.java │ │ │ │ └── TicketStatusService.java │ │ │ ├── hr │ │ │ ├── controllers │ │ │ │ ├── EmployeeController.java │ │ │ │ ├── EmployeeStatusController.java │ │ │ │ ├── EmployeeTypeController.java │ │ │ │ └── JobTitleController.java │ │ │ ├── models │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeStatus.java │ │ │ │ ├── EmployeeType.java │ │ │ │ ├── JobTitle.java │ │ │ │ └── Person.java │ │ │ ├── repositories │ │ │ │ ├── EmployeeRepository.java │ │ │ │ ├── EmployeeStatusRepository.java │ │ │ │ ├── EmployeeTypeRepository.java │ │ │ │ └── JobTitleRepository.java │ │ │ └── services │ │ │ │ ├── EmployeeService.java │ │ │ │ ├── EmployeeStatusService.java │ │ │ │ ├── EmployeeTypeService.java │ │ │ │ └── JobTitleService.java │ │ │ ├── mailing │ │ │ ├── AbstractEmailContext.java │ │ │ ├── AccountVerificationEmailContext.java │ │ │ ├── DefaultEmailService.java │ │ │ └── EmailService.java │ │ │ ├── parameters │ │ │ ├── controllers │ │ │ │ ├── ClientController.java │ │ │ │ ├── ContactController.java │ │ │ │ ├── CountryController.java │ │ │ │ ├── DepartmentController.java │ │ │ │ ├── LocationController.java │ │ │ │ ├── ModuleController.java │ │ │ │ ├── StateController.java │ │ │ │ └── SupplierController.java │ │ │ ├── models │ │ │ │ ├── Client.java │ │ │ │ ├── CommonObject.java │ │ │ │ ├── Contact.java │ │ │ │ ├── Country.java │ │ │ │ ├── Department.java │ │ │ │ ├── Location.java │ │ │ │ ├── Module.java │ │ │ │ ├── State.java │ │ │ │ └── Supplier.java │ │ │ ├── repositories │ │ │ │ ├── ClientRepository.java │ │ │ │ ├── ContactRepository.java │ │ │ │ ├── CountryRepository.java │ │ │ │ ├── DepartmentRepository.java │ │ │ │ ├── LocationRepository.java │ │ │ │ ├── ModuleRepository.java │ │ │ │ ├── StateRepository.java │ │ │ │ └── SupplierRepository.java │ │ │ ├── restapis │ │ │ │ └── CountryRestController.java │ │ │ └── services │ │ │ │ ├── ClientService.java │ │ │ │ ├── ContactService.java │ │ │ │ ├── CountryService.java │ │ │ │ ├── DepartmentService.java │ │ │ │ ├── LocationService.java │ │ │ │ ├── ModuleService.java │ │ │ │ ├── StateService.java │ │ │ │ └── SupplierService.java │ │ │ ├── reports │ │ │ └── ReportsController.java │ │ │ └── security │ │ │ ├── SpringSecurityAuditorAware.java │ │ │ ├── controllers │ │ │ ├── RegistrationController.java │ │ │ ├── RoleController.java │ │ │ ├── SecurityController.java │ │ │ └── UserController.java │ │ │ ├── models │ │ │ ├── Auditable.java │ │ │ ├── Role.java │ │ │ ├── SecureToken.java │ │ │ ├── User.java │ │ │ └── UserPrincipal.java │ │ │ ├── repositories │ │ │ ├── RoleRepository.java │ │ │ ├── SecureTokenRepository.java │ │ │ └── UserRepository.java │ │ │ └── services │ │ │ ├── DefaultSecureTokenService.java │ │ │ ├── MyUserDetailsService.java │ │ │ ├── RoleService.java │ │ │ ├── SecureTokenService.java │ │ │ └── UserService.java │ └── resources │ │ ├── app-deployment.yaml │ │ ├── application.properties │ │ ├── messages.properties │ │ ├── mysql-deployment.yaml │ │ ├── static │ │ ├── assets │ │ │ ├── chart-master │ │ │ │ ├── .gitignore │ │ │ │ ├── Chart.js │ │ │ │ ├── Chart.min.js │ │ │ │ ├── LICENSE.md │ │ │ │ ├── component.json │ │ │ │ ├── docs │ │ │ │ │ ├── Chart.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ ├── prettify.js │ │ │ │ │ ├── prettify.less │ │ │ │ │ ├── styles.css │ │ │ │ │ └── styles.less │ │ │ │ ├── readme.md │ │ │ │ ├── samples │ │ │ │ │ ├── bar.html │ │ │ │ │ ├── doughnut.html │ │ │ │ │ ├── line.html │ │ │ │ │ ├── pie.html │ │ │ │ │ ├── polarArea.html │ │ │ │ │ ├── radar.html │ │ │ │ │ └── sixup.html │ │ │ │ └── site │ │ │ │ │ ├── assets │ │ │ │ │ ├── 6charts.png │ │ │ │ │ ├── Chart.js │ │ │ │ │ ├── effects.js │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── html.png │ │ │ │ │ └── simple.png │ │ │ │ │ ├── index.html │ │ │ │ │ └── styles.css │ │ │ ├── ckeditor │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugins │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── fakeobjects │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── scayt │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ ├── specialchar │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ ├── table │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── table.js │ │ │ │ │ ├── tabletools │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ └── wsc │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ └── wsc.js │ │ │ │ ├── samples │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── api.html │ │ │ │ │ ├── appendto.html │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── sample.css │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ ├── divreplace.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inlineall.html │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ │ └── dialog.html │ │ │ │ │ │ ├── enterkey │ │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── magicline.html │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ │ └── wysiwygarea │ │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── tabindex.html │ │ │ │ │ ├── uicolor.html │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ ├── skins │ │ │ │ │ └── moono │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── mini.png │ │ │ │ │ │ └── readme.md │ │ │ │ └── styles.js │ │ │ ├── fullcalendar │ │ │ │ ├── GPL-LICENSE.txt │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ ├── changelog.txt │ │ │ │ ├── demos │ │ │ │ │ ├── agenda-views.html │ │ │ │ │ ├── basic-views.html │ │ │ │ │ ├── cupertino │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ │ └── theme.css │ │ │ │ │ ├── default.html │ │ │ │ │ ├── external-dragging.html │ │ │ │ │ ├── gcal.html │ │ │ │ │ ├── json-events.php │ │ │ │ │ ├── json.html │ │ │ │ │ ├── selectable.html │ │ │ │ │ └── theme.html │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── bootstrap-fullcalendar.css │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ ├── fullcalendar.js │ │ │ │ │ ├── fullcalendar.min.js │ │ │ │ │ ├── fullcalendar.print.css │ │ │ │ │ └── gcal.js │ │ │ │ └── jquery │ │ │ │ │ ├── jquery-1.8.1.min.js │ │ │ │ │ └── jquery-ui-1.8.23.custom.min.js │ │ │ ├── jquery-easy-pie-chart │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── examples │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ │ └── easy-pie-chart.png │ │ │ │ ├── jquery.easy-pie-chart.coffee │ │ │ │ ├── jquery.easy-pie-chart.css │ │ │ │ └── jquery.easy-pie-chart.js │ │ │ ├── jquery-knob │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── jquery.knob.js │ │ │ ├── jquery-ui │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.1.custom.css │ │ │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ │ │ └── jquery-ui-1.9.2.custom.min.js │ │ │ └── morris.js-0.4.3 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── examples │ │ │ │ ├── _template.html │ │ │ │ ├── area-as-line.html │ │ │ │ ├── area.html │ │ │ │ ├── bar-colors.html │ │ │ │ ├── bar-no-axes.html │ │ │ │ ├── bar.html │ │ │ │ ├── days.html │ │ │ │ ├── decimal-custom-hover.html │ │ │ │ ├── diagonal-xlabels-bar.html │ │ │ │ ├── diagonal-xlabels.html │ │ │ │ ├── donut-colors.html │ │ │ │ ├── donut-formatter.html │ │ │ │ ├── donut.html │ │ │ │ ├── dst.html │ │ │ │ ├── events.html │ │ │ │ ├── goals.html │ │ │ │ ├── lib │ │ │ │ │ ├── example.css │ │ │ │ │ ├── example.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── months-no-smooth.html │ │ │ │ ├── negative.html │ │ │ │ ├── no-grid.html │ │ │ │ ├── non-continuous.html │ │ │ │ ├── non-date.html │ │ │ │ ├── quarters.html │ │ │ │ ├── stacked_bars.html │ │ │ │ ├── timestamps.html │ │ │ │ ├── updating.html │ │ │ │ ├── weeks.html │ │ │ │ └── years.html │ │ │ │ ├── grunt.js │ │ │ │ ├── less │ │ │ │ └── morris.core.less │ │ │ │ ├── lib │ │ │ │ ├── morris.area.coffee │ │ │ │ ├── morris.bar.coffee │ │ │ │ ├── morris.coffee │ │ │ │ ├── morris.donut.coffee │ │ │ │ ├── morris.grid.coffee │ │ │ │ ├── morris.hover.coffee │ │ │ │ └── morris.line.coffee │ │ │ │ ├── morris.css │ │ │ │ ├── morris.js │ │ │ │ ├── morris.min.js │ │ │ │ ├── package.json │ │ │ │ ├── raphael-min.js │ │ │ │ └── spec │ │ │ │ ├── lib │ │ │ │ ├── area │ │ │ │ │ └── area_spec.coffee │ │ │ │ ├── bar │ │ │ │ │ ├── bar_spec.coffee │ │ │ │ │ └── colours.coffee │ │ │ │ ├── commas_spec.coffee │ │ │ │ ├── donut │ │ │ │ │ └── donut_spec.coffee │ │ │ │ ├── grid │ │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ │ ├── set_data_spec.coffee │ │ │ │ │ └── y_label_format_spec.coffee │ │ │ │ ├── hover_spec.coffee │ │ │ │ ├── label_series_spec.coffee │ │ │ │ ├── line │ │ │ │ │ └── line_spec.coffee │ │ │ │ ├── pad_spec.coffee │ │ │ │ └── parse_time_spec.coffee │ │ │ │ ├── specs.html │ │ │ │ ├── support │ │ │ │ └── placeholder.coffee │ │ │ │ └── vendor │ │ │ │ ├── chai-1.3.0.js │ │ │ │ ├── chai-jquery-1.1.0.js │ │ │ │ ├── jquery-1.8.2.min.js │ │ │ │ ├── mocha-1.6.0.css │ │ │ │ ├── mocha-1.6.0.js │ │ │ │ ├── raphael-2.1.0.min.js │ │ │ │ ├── sinon-1.5.0.js │ │ │ │ └── sinon-chai-2.1.2.js │ │ ├── contactform │ │ │ ├── Readme.txt │ │ │ └── contactform.js │ │ ├── css │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.min.css │ │ │ ├── daterangepicker.css │ │ │ ├── elegant-icons-style.css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.min.css │ │ │ ├── fullcalendar.css │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-ui-1.10.4.min.css │ │ │ ├── line-icons.css │ │ │ ├── owl.carousel.css │ │ │ ├── style-responsive.css │ │ │ ├── style.css │ │ │ ├── widgets.css │ │ │ └── xcharts.min.css │ │ ├── fonts │ │ │ ├── ElegantIcons.eot │ │ │ ├── ElegantIcons.svg │ │ │ ├── ElegantIcons.ttf │ │ │ ├── ElegantIcons.woff │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── Germany.png │ │ │ ├── India.png │ │ │ ├── Russia.png │ │ │ ├── Spain.png │ │ │ ├── arrow-up.png │ │ │ ├── avatar-mini.jpg │ │ │ ├── avatar-mini2.jpg │ │ │ ├── avatar-mini3.jpg │ │ │ ├── avatar-mini4.jpg │ │ │ ├── avatar1.jpg │ │ │ ├── avatar1_small.jpg │ │ │ ├── bg-1.jpg │ │ │ ├── bg-11.jpg │ │ │ ├── chart-texture.jpg │ │ │ ├── chat-avatar.jpg │ │ │ ├── chat-avatar2.jpg │ │ │ ├── customSelect-arrow.gif │ │ │ ├── geekslabs.png │ │ │ ├── icons │ │ │ │ ├── line-icon-c.png │ │ │ │ ├── line-icon-hover.png │ │ │ │ ├── line-icon.png │ │ │ │ ├── search-line-icon.png │ │ │ │ ├── social.png │ │ │ │ ├── weather-hover.png │ │ │ │ └── weather.png │ │ │ ├── left-arrow.png │ │ │ ├── logo-big.png │ │ │ ├── mail-avatar.jpg │ │ │ ├── photos │ │ │ │ ├── adaoma.jpg │ │ │ │ ├── booboo.jpg │ │ │ │ ├── jadon.jpg │ │ │ │ ├── james.jpg │ │ │ │ ├── jani.JPG │ │ │ │ ├── jeffrey.jpg │ │ │ │ ├── kindsonthegenius.jpg │ │ │ │ ├── liudmyla.jpg │ │ │ │ ├── onyx.jpg │ │ │ │ ├── osasu.jpg │ │ │ │ ├── praise.JPG │ │ │ │ ├── saffron.jpg │ │ │ │ ├── solace.jpg │ │ │ │ └── yasmine.jpg │ │ │ ├── profile-avatar.jpg │ │ │ ├── profile-widget-avatar.jpg │ │ │ ├── right-arrow.png │ │ │ ├── sample-img-1.jpg │ │ │ ├── sample-img-2.png │ │ │ ├── sample-img-3.png │ │ │ ├── search-icon.jpg │ │ │ ├── user.jpg │ │ │ ├── user22.png │ │ │ └── vehicles │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ └── js │ │ │ ├── additional-methods.min.js │ │ │ ├── bootstrap-colorpicker.js │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap-switch.js │ │ │ ├── bootstrap-wysiwyg-custom.js │ │ │ ├── bootstrap-wysiwyg.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── calendar-custom.js │ │ │ ├── chartjs-custom.js │ │ │ ├── charts-flot.js │ │ │ ├── charts-other.js │ │ │ ├── charts-xcharts.js │ │ │ ├── charts.js │ │ │ ├── daterangepicker.js │ │ │ ├── dynamic-table.js │ │ │ ├── easy-pie-chart.js │ │ │ ├── excanvas.min.js │ │ │ ├── form-component.js │ │ │ ├── form-validation-script.js │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── ga.js │ │ │ ├── gdp-data.js │ │ │ ├── gritter.js │ │ │ ├── html5shiv.js │ │ │ ├── index.js │ │ │ ├── jquery-1.8.3.min.js │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ ├── jquery-jvectormap-world-mill-en.js │ │ │ ├── jquery-ui-1.10.4.min.js │ │ │ ├── jquery-ui-1.9.2.custom.min.js │ │ │ ├── jquery.autosize.min.js │ │ │ ├── jquery.customSelect.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.hotkeys.js │ │ │ ├── jquery.js │ │ │ ├── jquery.localscroll.js │ │ │ ├── jquery.nicescroll.js │ │ │ ├── jquery.placeholder.min.js │ │ │ ├── jquery.rateit.min.js │ │ │ ├── jquery.scrollTo.min.js │ │ │ ├── jquery.slimscroll.min.js │ │ │ ├── jquery.smartWizard.js │ │ │ ├── jquery.sparkline-11.js │ │ │ ├── jquery.sparkline.js │ │ │ ├── jquery.stepy.js │ │ │ ├── jquery.tagsinput.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── lte-ie7.js │ │ │ ├── moment.js │ │ │ ├── morris-script.js │ │ │ ├── morris.min.js │ │ │ ├── owl.carousel.js │ │ │ ├── scripts.js │ │ │ ├── sliders.js │ │ │ ├── sparkline-chart.js │ │ │ ├── sparklines.js │ │ │ └── xcharts.min.js │ │ └── templates │ │ ├── _layout.html │ │ ├── accessDenied.html │ │ ├── accounts │ │ ├── index.html │ │ ├── invoiceAdd.html │ │ ├── invoiceDetails.html │ │ ├── invoiceEdit.html │ │ ├── invoiceStatuses.html │ │ ├── invoices.html │ │ ├── transactionAdd.html │ │ ├── transactionDetails.html │ │ ├── transactionEdit.html │ │ ├── transactionStatuses.html │ │ ├── transactionTypes.html │ │ └── transactions.html │ │ ├── assets │ │ ├── 404.html │ │ ├── basic_table.html │ │ ├── blank.html │ │ ├── buttons.html │ │ ├── chart-chartjs.html │ │ ├── contact.html │ │ ├── form_component.html │ │ ├── form_validation.html │ │ ├── general.html │ │ ├── grids.html │ │ ├── index.html │ │ ├── login.html │ │ ├── profile.html │ │ └── widgets.html │ │ ├── fleet │ │ ├── hireAdd.html │ │ ├── hireDetails.html │ │ ├── hireEdit.html │ │ ├── hires.html │ │ ├── index.html │ │ ├── maintenanceAdd.html │ │ ├── maintenanceDetails.html │ │ ├── maintenanceEdit.html │ │ ├── maintenances.html │ │ ├── movementAdd.html │ │ ├── movementDetails.html │ │ ├── movementEdit.html │ │ ├── movements.html │ │ ├── vehicleAdd.html │ │ ├── vehicleDetails.html │ │ ├── vehicleEdit.html │ │ ├── vehicleMakes.html │ │ ├── vehicleModels.html │ │ ├── vehicleStatuses.html │ │ ├── vehicleTypes.html │ │ └── vehicles.html │ │ ├── helpdesk │ │ └── index.html │ │ ├── hr │ │ ├── employeeAdd.html │ │ ├── employeeDetails.html │ │ ├── employeeEdit.html │ │ ├── employeeStatuses.html │ │ ├── employeeTypes.html │ │ ├── employees.html │ │ ├── index.html │ │ └── jobTitles.html │ │ ├── index.html │ │ ├── mailing │ │ └── email-verification.html │ │ ├── parameters │ │ ├── clientAdd.html │ │ ├── clientDetails.html │ │ ├── clientEdit.html │ │ ├── clients.html │ │ ├── contactAdd.html │ │ ├── contactDetails.html │ │ ├── contactEdit.html │ │ ├── contacts.html │ │ ├── countries.html │ │ ├── countryAdd.html │ │ ├── countryDetails.html │ │ ├── countryEdit.html │ │ ├── index.html │ │ ├── locationAdd.html │ │ ├── locationDetails.html │ │ ├── locationEdit.html │ │ ├── locations.html │ │ ├── stateAdd.html │ │ ├── stateDetails.html │ │ ├── stateEdit.html │ │ ├── states.html │ │ ├── supplierAdd.html │ │ ├── supplierDetails.html │ │ ├── supplierEdit.html │ │ └── suppliers.html │ │ ├── payroll │ │ └── index.html │ │ ├── reports │ │ ├── accounts.html │ │ ├── helpdesk.html │ │ ├── hires.html │ │ ├── hr.html │ │ ├── index.html │ │ ├── maintenance.html │ │ └── vehicles.html │ │ └── security │ │ ├── index.html │ │ ├── login.html │ │ ├── register.html │ │ ├── registrationSuccessful.html │ │ ├── roles.html │ │ ├── userEdit.html │ │ └── users.html └── test │ └── java │ └── com │ └── kindsonthegenius │ └── fleetmsv2 │ ├── CountryTests.java │ └── Fleetmsv2ApplicationTests.java └── ~$odules.docx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/Dockerfile -------------------------------------------------------------------------------- /FleetDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/FleetDB.sql -------------------------------------------------------------------------------- /Images.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/Images.pptx -------------------------------------------------------------------------------- /Modules.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/Modules.docx -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/Readme.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /node-be/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/connection.js -------------------------------------------------------------------------------- /node-be/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/index.js -------------------------------------------------------------------------------- /node-be/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /node-be/node_modules/.bin/mime 2: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /node-be/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/.package-lock.json -------------------------------------------------------------------------------- /node-be/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/accepts/README.md -------------------------------------------------------------------------------- /node-be/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/accepts/index.js -------------------------------------------------------------------------------- /node-be/node_modules/accepts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/accepts/package.json -------------------------------------------------------------------------------- /node-be/node_modules/array-flatten/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/array-flatten/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/array-flatten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/array-flatten/README.md -------------------------------------------------------------------------------- /node-be/node_modules/array-flatten/array-flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/array-flatten/array-flatten.js -------------------------------------------------------------------------------- /node-be/node_modules/array-flatten/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/array-flatten/package.json -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/CHANGELOG.md -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/LICENCE -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/README.md -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/bignumber.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/bignumber.d.ts -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/bignumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/bignumber.js -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/bignumber.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/bignumber.min.js -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/bignumber.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/bignumber.min.js.map -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/bignumber.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/bignumber.mjs -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/doc/API.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/doc/API.html -------------------------------------------------------------------------------- /node-be/node_modules/bignumber.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bignumber.js/package.json -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/lib/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/lib/read.js -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/lib/types/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/lib/types/json.js -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/lib/types/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/lib/types/raw.js -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/lib/types/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/lib/types/text.js -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/lib/types/urlencoded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/lib/types/urlencoded.js -------------------------------------------------------------------------------- /node-be/node_modules/body-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/body-parser/package.json -------------------------------------------------------------------------------- /node-be/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bytes/History.md -------------------------------------------------------------------------------- /node-be/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bytes/index.js -------------------------------------------------------------------------------- /node-be/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/bytes/package.json -------------------------------------------------------------------------------- /node-be/node_modules/content-disposition/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-disposition/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/content-disposition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-disposition/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/content-disposition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-disposition/README.md -------------------------------------------------------------------------------- /node-be/node_modules/content-disposition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-disposition/index.js -------------------------------------------------------------------------------- /node-be/node_modules/content-disposition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-disposition/package.json -------------------------------------------------------------------------------- /node-be/node_modules/content-type/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-type/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/content-type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-type/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/content-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-type/README.md -------------------------------------------------------------------------------- /node-be/node_modules/content-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-type/index.js -------------------------------------------------------------------------------- /node-be/node_modules/content-type/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/content-type/package.json -------------------------------------------------------------------------------- /node-be/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /node-be/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie-signature/History.md -------------------------------------------------------------------------------- /node-be/node_modules/cookie-signature/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie-signature/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/cookie-signature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie-signature/index.js -------------------------------------------------------------------------------- /node-be/node_modules/cookie-signature/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie-signature/package.json -------------------------------------------------------------------------------- /node-be/node_modules/cookie/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie/README.md -------------------------------------------------------------------------------- /node-be/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie/index.js -------------------------------------------------------------------------------- /node-be/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/cookie/package.json -------------------------------------------------------------------------------- /node-be/node_modules/core-util-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/core-util-is/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/core-util-is/README.md -------------------------------------------------------------------------------- /node-be/node_modules/core-util-is/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/core-util-is/lib/util.js -------------------------------------------------------------------------------- /node-be/node_modules/core-util-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/core-util-is/package.json -------------------------------------------------------------------------------- /node-be/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /node-be/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /node-be/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /node-be/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/.travis.yml -------------------------------------------------------------------------------- /node-be/node_modules/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/CHANGELOG.md -------------------------------------------------------------------------------- /node-be/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/Makefile -------------------------------------------------------------------------------- /node-be/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/README.md -------------------------------------------------------------------------------- /node-be/node_modules/debug/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/component.json -------------------------------------------------------------------------------- /node-be/node_modules/debug/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/karma.conf.js -------------------------------------------------------------------------------- /node-be/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /node-be/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/package.json -------------------------------------------------------------------------------- /node-be/node_modules/debug/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/src/browser.js -------------------------------------------------------------------------------- /node-be/node_modules/debug/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/src/debug.js -------------------------------------------------------------------------------- /node-be/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /node-be/node_modules/debug/src/inspector-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/src/inspector-log.js -------------------------------------------------------------------------------- /node-be/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /node-be/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/History.md -------------------------------------------------------------------------------- /node-be/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/index.js -------------------------------------------------------------------------------- /node-be/node_modules/depd/lib/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/lib/browser/index.js -------------------------------------------------------------------------------- /node-be/node_modules/depd/lib/compat/callsite-tostring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/lib/compat/callsite-tostring.js -------------------------------------------------------------------------------- /node-be/node_modules/depd/lib/compat/event-listener-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/lib/compat/event-listener-count.js -------------------------------------------------------------------------------- /node-be/node_modules/depd/lib/compat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/lib/compat/index.js -------------------------------------------------------------------------------- /node-be/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/depd/package.json -------------------------------------------------------------------------------- /node-be/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/destroy/README.md -------------------------------------------------------------------------------- /node-be/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/destroy/index.js -------------------------------------------------------------------------------- /node-be/node_modules/destroy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/destroy/package.json -------------------------------------------------------------------------------- /node-be/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /node-be/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /node-be/node_modules/ee-first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ee-first/package.json -------------------------------------------------------------------------------- /node-be/node_modules/encodeurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/encodeurl/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/encodeurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/encodeurl/README.md -------------------------------------------------------------------------------- /node-be/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /node-be/node_modules/encodeurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/encodeurl/package.json -------------------------------------------------------------------------------- /node-be/node_modules/escape-html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/escape-html/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/escape-html/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/escape-html/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/escape-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/escape-html/index.js -------------------------------------------------------------------------------- /node-be/node_modules/escape-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/escape-html/package.json -------------------------------------------------------------------------------- /node-be/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/etag/README.md -------------------------------------------------------------------------------- /node-be/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/etag/index.js -------------------------------------------------------------------------------- /node-be/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/etag/package.json -------------------------------------------------------------------------------- /node-be/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/History.md -------------------------------------------------------------------------------- /node-be/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/index.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/application.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/middleware/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/middleware/init.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/middleware/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/middleware/query.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/router/index.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/router/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/router/layer.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/router/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/router/route.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /node-be/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /node-be/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/express/package.json -------------------------------------------------------------------------------- /node-be/node_modules/finalhandler/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/finalhandler/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/finalhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/finalhandler/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/finalhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/finalhandler/README.md -------------------------------------------------------------------------------- /node-be/node_modules/finalhandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/finalhandler/index.js -------------------------------------------------------------------------------- /node-be/node_modules/finalhandler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/finalhandler/package.json -------------------------------------------------------------------------------- /node-be/node_modules/forwarded/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/forwarded/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/forwarded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/forwarded/README.md -------------------------------------------------------------------------------- /node-be/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /node-be/node_modules/forwarded/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/forwarded/package.json -------------------------------------------------------------------------------- /node-be/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/fresh/README.md -------------------------------------------------------------------------------- /node-be/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/fresh/index.js -------------------------------------------------------------------------------- /node-be/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/fresh/package.json -------------------------------------------------------------------------------- /node-be/node_modules/http-errors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/http-errors/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/http-errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/http-errors/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/http-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/http-errors/README.md -------------------------------------------------------------------------------- /node-be/node_modules/http-errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/http-errors/index.js -------------------------------------------------------------------------------- /node-be/node_modules/http-errors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/http-errors/package.json -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/Changelog.md -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/README.md -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/dbcs-codec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/dbcs-codec.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/dbcs-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/dbcs-data.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/index.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/internal.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/sbcs-codec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/sbcs-codec.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/sbcs-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/sbcs-data.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/tables/cp936.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/tables/cp936.json -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/tables/cp949.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/tables/cp949.json -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/tables/cp950.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/tables/cp950.json -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/tables/eucjp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/tables/eucjp.json -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/utf16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/utf16.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/encodings/utf7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/encodings/utf7.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/lib/bom-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/lib/bom-handling.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/lib/extend-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/lib/extend-node.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/lib/index.d.ts -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/lib/index.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/lib/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/lib/streams.js -------------------------------------------------------------------------------- /node-be/node_modules/iconv-lite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/iconv-lite/package.json -------------------------------------------------------------------------------- /node-be/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/inherits/README.md -------------------------------------------------------------------------------- /node-be/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/inherits/inherits.js -------------------------------------------------------------------------------- /node-be/node_modules/inherits/inherits_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/inherits/inherits_browser.js -------------------------------------------------------------------------------- /node-be/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/inherits/package.json -------------------------------------------------------------------------------- /node-be/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/ipaddr.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ipaddr.js/README.md -------------------------------------------------------------------------------- /node-be/node_modules/ipaddr.js/ipaddr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ipaddr.js/ipaddr.min.js -------------------------------------------------------------------------------- /node-be/node_modules/ipaddr.js/lib/ipaddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ipaddr.js/lib/ipaddr.js -------------------------------------------------------------------------------- /node-be/node_modules/ipaddr.js/lib/ipaddr.js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ipaddr.js/lib/ipaddr.js.d.ts -------------------------------------------------------------------------------- /node-be/node_modules/ipaddr.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ipaddr.js/package.json -------------------------------------------------------------------------------- /node-be/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node-be/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/.travis.yml -------------------------------------------------------------------------------- /node-be/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/Makefile -------------------------------------------------------------------------------- /node-be/node_modules/isarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/README.md -------------------------------------------------------------------------------- /node-be/node_modules/isarray/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/component.json -------------------------------------------------------------------------------- /node-be/node_modules/isarray/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/index.js -------------------------------------------------------------------------------- /node-be/node_modules/isarray/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/package.json -------------------------------------------------------------------------------- /node-be/node_modules/isarray/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/isarray/test.js -------------------------------------------------------------------------------- /node-be/node_modules/media-typer/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/media-typer/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/media-typer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/media-typer/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/media-typer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/media-typer/README.md -------------------------------------------------------------------------------- /node-be/node_modules/media-typer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/media-typer/index.js -------------------------------------------------------------------------------- /node-be/node_modules/media-typer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/media-typer/package.json -------------------------------------------------------------------------------- /node-be/node_modules/merge-descriptors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/merge-descriptors/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/merge-descriptors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/merge-descriptors/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/merge-descriptors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/merge-descriptors/README.md -------------------------------------------------------------------------------- /node-be/node_modules/merge-descriptors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/merge-descriptors/index.js -------------------------------------------------------------------------------- /node-be/node_modules/merge-descriptors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/merge-descriptors/package.json -------------------------------------------------------------------------------- /node-be/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/methods/README.md -------------------------------------------------------------------------------- /node-be/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/methods/index.js -------------------------------------------------------------------------------- /node-be/node_modules/methods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/methods/package.json -------------------------------------------------------------------------------- /node-be/node_modules/mime-db/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-db/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /node-be/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /node-be/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /node-be/node_modules/mime-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-db/package.json -------------------------------------------------------------------------------- /node-be/node_modules/mime-types/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-types/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/mime-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-types/README.md -------------------------------------------------------------------------------- /node-be/node_modules/mime-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-types/index.js -------------------------------------------------------------------------------- /node-be/node_modules/mime-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime-types/package.json -------------------------------------------------------------------------------- /node-be/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node-be/node_modules/mime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/CHANGELOG.md -------------------------------------------------------------------------------- /node-be/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/README.md -------------------------------------------------------------------------------- /node-be/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/cli.js -------------------------------------------------------------------------------- /node-be/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/mime.js -------------------------------------------------------------------------------- /node-be/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/package.json -------------------------------------------------------------------------------- /node-be/node_modules/mime/src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/src/build.js -------------------------------------------------------------------------------- /node-be/node_modules/mime/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/src/test.js -------------------------------------------------------------------------------- /node-be/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mime/types.json -------------------------------------------------------------------------------- /node-be/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ms/index.js -------------------------------------------------------------------------------- /node-be/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ms/license.md -------------------------------------------------------------------------------- /node-be/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ms/package.json -------------------------------------------------------------------------------- /node-be/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/ms/readme.md -------------------------------------------------------------------------------- /node-be/node_modules/mysql/Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/Changes.md -------------------------------------------------------------------------------- /node-be/node_modules/mysql/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/License -------------------------------------------------------------------------------- /node-be/node_modules/mysql/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/mysql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/index.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/Connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/Connection.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/ConnectionConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/ConnectionConfig.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/Pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/Pool.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/PoolCluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/PoolCluster.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/PoolConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/PoolConfig.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/PoolConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/PoolConnection.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/PoolNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/PoolNamespace.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/PoolSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/PoolSelector.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/Auth.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/BufferList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/BufferList.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/PacketHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/PacketHeader.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/PacketWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/PacketWriter.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/Parser.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/Protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/Protocol.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/ResultSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/ResultSet.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/SqlString.js: -------------------------------------------------------------------------------- 1 | module.exports = require('sqlstring'); 2 | -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/Timer.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/constants/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/constants/client.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/constants/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/constants/errors.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/constants/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/constants/types.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/packets/EofPacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/packets/EofPacket.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/packets/Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/packets/Field.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/packets/OkPacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/packets/OkPacket.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/packets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/packets/index.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/sequences/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/sequences/Ping.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/sequences/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/sequences/Query.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/sequences/Quit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/sequences/Quit.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/lib/protocol/sequences/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/lib/protocol/sequences/index.js -------------------------------------------------------------------------------- /node-be/node_modules/mysql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/mysql/package.json -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/README.md -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/index.js -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/lib/charset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/lib/charset.js -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/lib/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/lib/encoding.js -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/lib/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/lib/language.js -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/lib/mediaType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/lib/mediaType.js -------------------------------------------------------------------------------- /node-be/node_modules/negotiator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/negotiator/package.json -------------------------------------------------------------------------------- /node-be/node_modules/on-finished/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/on-finished/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/on-finished/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/on-finished/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/on-finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/on-finished/README.md -------------------------------------------------------------------------------- /node-be/node_modules/on-finished/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/on-finished/index.js -------------------------------------------------------------------------------- /node-be/node_modules/on-finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/on-finished/package.json -------------------------------------------------------------------------------- /node-be/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /node-be/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /node-be/node_modules/parseurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/parseurl/package.json -------------------------------------------------------------------------------- /node-be/node_modules/path-to-regexp/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/path-to-regexp/History.md -------------------------------------------------------------------------------- /node-be/node_modules/path-to-regexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/path-to-regexp/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/path-to-regexp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/path-to-regexp/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/path-to-regexp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/path-to-regexp/index.js -------------------------------------------------------------------------------- /node-be/node_modules/path-to-regexp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/path-to-regexp/package.json -------------------------------------------------------------------------------- /node-be/node_modules/process-nextick-args/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/process-nextick-args/index.js -------------------------------------------------------------------------------- /node-be/node_modules/process-nextick-args/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/process-nextick-args/license.md -------------------------------------------------------------------------------- /node-be/node_modules/process-nextick-args/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/process-nextick-args/package.json -------------------------------------------------------------------------------- /node-be/node_modules/process-nextick-args/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/process-nextick-args/readme.md -------------------------------------------------------------------------------- /node-be/node_modules/proxy-addr/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/proxy-addr/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/proxy-addr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/proxy-addr/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/proxy-addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/proxy-addr/README.md -------------------------------------------------------------------------------- /node-be/node_modules/proxy-addr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/proxy-addr/index.js -------------------------------------------------------------------------------- /node-be/node_modules/proxy-addr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/proxy-addr/package.json -------------------------------------------------------------------------------- /node-be/node_modules/qs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/.editorconfig -------------------------------------------------------------------------------- /node-be/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /node-be/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /node-be/node_modules/qs/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/.github/FUNDING.yml -------------------------------------------------------------------------------- /node-be/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /node-be/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /node-be/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /node-be/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/README.md -------------------------------------------------------------------------------- /node-be/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/lib/formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/lib/formats.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/lib/stringify.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/package.json -------------------------------------------------------------------------------- /node-be/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/test/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/test/stringify.js -------------------------------------------------------------------------------- /node-be/node_modules/qs/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/qs/test/utils.js -------------------------------------------------------------------------------- /node-be/node_modules/range-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/range-parser/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/range-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/range-parser/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/range-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/range-parser/README.md -------------------------------------------------------------------------------- /node-be/node_modules/range-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/range-parser/index.js -------------------------------------------------------------------------------- /node-be/node_modules/range-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/range-parser/package.json -------------------------------------------------------------------------------- /node-be/node_modules/raw-body/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/raw-body/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/raw-body/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/raw-body/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/raw-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/raw-body/README.md -------------------------------------------------------------------------------- /node-be/node_modules/raw-body/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/raw-body/index.d.ts -------------------------------------------------------------------------------- /node-be/node_modules/raw-body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/raw-body/index.js -------------------------------------------------------------------------------- /node-be/node_modules/raw-body/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/raw-body/package.json -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/.travis.yml -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/CONTRIBUTING.md -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/GOVERNANCE.md -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/README.md -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/lib/_stream_duplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/lib/_stream_duplex.js -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/lib/_stream_readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/lib/_stream_readable.js -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/lib/_stream_writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/lib/_stream_writable.js -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/package.json -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/readable-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/readable-browser.js -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/readable.js -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /node-be/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/readable-stream/writable.js -------------------------------------------------------------------------------- /node-be/node_modules/safe-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safe-buffer/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/safe-buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safe-buffer/README.md -------------------------------------------------------------------------------- /node-be/node_modules/safe-buffer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safe-buffer/index.d.ts -------------------------------------------------------------------------------- /node-be/node_modules/safe-buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safe-buffer/index.js -------------------------------------------------------------------------------- /node-be/node_modules/safe-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safe-buffer/package.json -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/Porting-Buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/Porting-Buffer.md -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/Readme.md -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/dangerous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/dangerous.js -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/package.json -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/safer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/safer.js -------------------------------------------------------------------------------- /node-be/node_modules/safer-buffer/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/safer-buffer/tests.js -------------------------------------------------------------------------------- /node-be/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/README.md -------------------------------------------------------------------------------- /node-be/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/index.js -------------------------------------------------------------------------------- /node-be/node_modules/send/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/node_modules/ms/index.js -------------------------------------------------------------------------------- /node-be/node_modules/send/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/node_modules/ms/license.md -------------------------------------------------------------------------------- /node-be/node_modules/send/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/node_modules/ms/package.json -------------------------------------------------------------------------------- /node-be/node_modules/send/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/node_modules/ms/readme.md -------------------------------------------------------------------------------- /node-be/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/send/package.json -------------------------------------------------------------------------------- /node-be/node_modules/serve-static/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/serve-static/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/serve-static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/serve-static/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/serve-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/serve-static/README.md -------------------------------------------------------------------------------- /node-be/node_modules/serve-static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/serve-static/index.js -------------------------------------------------------------------------------- /node-be/node_modules/serve-static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/serve-static/package.json -------------------------------------------------------------------------------- /node-be/node_modules/setprototypeof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/setprototypeof/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/setprototypeof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/setprototypeof/README.md -------------------------------------------------------------------------------- /node-be/node_modules/setprototypeof/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/setprototypeof/index.d.ts -------------------------------------------------------------------------------- /node-be/node_modules/setprototypeof/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/setprototypeof/index.js -------------------------------------------------------------------------------- /node-be/node_modules/setprototypeof/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/setprototypeof/package.json -------------------------------------------------------------------------------- /node-be/node_modules/setprototypeof/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/setprototypeof/test/index.js -------------------------------------------------------------------------------- /node-be/node_modules/sqlstring/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/sqlstring/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/sqlstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/sqlstring/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/sqlstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/sqlstring/README.md -------------------------------------------------------------------------------- /node-be/node_modules/sqlstring/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/SqlString'); 2 | -------------------------------------------------------------------------------- /node-be/node_modules/sqlstring/lib/SqlString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/sqlstring/lib/SqlString.js -------------------------------------------------------------------------------- /node-be/node_modules/sqlstring/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/sqlstring/package.json -------------------------------------------------------------------------------- /node-be/node_modules/statuses/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/statuses/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/statuses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/statuses/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/statuses/README.md -------------------------------------------------------------------------------- /node-be/node_modules/statuses/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/statuses/codes.json -------------------------------------------------------------------------------- /node-be/node_modules/statuses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/statuses/index.js -------------------------------------------------------------------------------- /node-be/node_modules/statuses/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/statuses/package.json -------------------------------------------------------------------------------- /node-be/node_modules/string_decoder/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/string_decoder/.travis.yml -------------------------------------------------------------------------------- /node-be/node_modules/string_decoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/string_decoder/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/string_decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/string_decoder/README.md -------------------------------------------------------------------------------- /node-be/node_modules/string_decoder/lib/string_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/string_decoder/lib/string_decoder.js -------------------------------------------------------------------------------- /node-be/node_modules/string_decoder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/string_decoder/package.json -------------------------------------------------------------------------------- /node-be/node_modules/toidentifier/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/toidentifier/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/toidentifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/toidentifier/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/toidentifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/toidentifier/README.md -------------------------------------------------------------------------------- /node-be/node_modules/toidentifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/toidentifier/index.js -------------------------------------------------------------------------------- /node-be/node_modules/toidentifier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/toidentifier/package.json -------------------------------------------------------------------------------- /node-be/node_modules/type-is/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/type-is/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/type-is/README.md -------------------------------------------------------------------------------- /node-be/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/type-is/index.js -------------------------------------------------------------------------------- /node-be/node_modules/type-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/type-is/package.json -------------------------------------------------------------------------------- /node-be/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/unpipe/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/unpipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/unpipe/README.md -------------------------------------------------------------------------------- /node-be/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /node-be/node_modules/unpipe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/unpipe/package.json -------------------------------------------------------------------------------- /node-be/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/util-deprecate/History.md -------------------------------------------------------------------------------- /node-be/node_modules/util-deprecate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/util-deprecate/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/util-deprecate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/util-deprecate/README.md -------------------------------------------------------------------------------- /node-be/node_modules/util-deprecate/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/util-deprecate/browser.js -------------------------------------------------------------------------------- /node-be/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/util-deprecate/node.js -------------------------------------------------------------------------------- /node-be/node_modules/util-deprecate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/util-deprecate/package.json -------------------------------------------------------------------------------- /node-be/node_modules/utils-merge/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/utils-merge/.npmignore -------------------------------------------------------------------------------- /node-be/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/utils-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/utils-merge/README.md -------------------------------------------------------------------------------- /node-be/node_modules/utils-merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/utils-merge/index.js -------------------------------------------------------------------------------- /node-be/node_modules/utils-merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/utils-merge/package.json -------------------------------------------------------------------------------- /node-be/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /node-be/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /node-be/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/vary/README.md -------------------------------------------------------------------------------- /node-be/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/vary/index.js -------------------------------------------------------------------------------- /node-be/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/node_modules/vary/package.json -------------------------------------------------------------------------------- /node-be/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/package-lock.json -------------------------------------------------------------------------------- /node-be/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/node-be/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/resources/app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/app-deployment.yaml -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/messages.properties -------------------------------------------------------------------------------- /src/main/resources/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/mysql-deployment.yaml -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/chart-master/Chart.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/chart-master/Chart.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/chart-master/LICENSE.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/chart-master/component.json -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/docs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/chart-master/docs/Chart.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/chart-master/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/chart-master/readme.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/README.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/build-config.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/config.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/contents.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/af.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/da.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/de.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/el.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/en.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/es.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/et.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/he.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/is.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/it.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/km.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/no.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/th.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/samples/api.html -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/samples/index.html -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/ckeditor/styles.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/fullcalendar/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/fullcalendar/changelog.txt -------------------------------------------------------------------------------- /src/main/resources/static/assets/jquery-knob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/jquery-knob/README.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/jquery-knob/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/jquery-knob/index.html -------------------------------------------------------------------------------- /src/main/resources/static/assets/morris.js-0.4.3/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /src/main/resources/static/assets/morris.js-0.4.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/morris.js-0.4.3/.travis.yml -------------------------------------------------------------------------------- /src/main/resources/static/assets/morris.js-0.4.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/morris.js-0.4.3/README.md -------------------------------------------------------------------------------- /src/main/resources/static/assets/morris.js-0.4.3/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/morris.js-0.4.3/grunt.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/morris.js-0.4.3/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/morris.js-0.4.3/morris.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/morris.js-0.4.3/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/assets/morris.js-0.4.3/morris.js -------------------------------------------------------------------------------- /src/main/resources/static/contactform/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/contactform/Readme.txt -------------------------------------------------------------------------------- /src/main/resources/static/contactform/contactform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/contactform/contactform.js -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap-colorpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/bootstrap-colorpicker.css -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/bootstrap-datepicker.css -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/daterangepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/daterangepicker.css -------------------------------------------------------------------------------- /src/main/resources/static/css/elegant-icons-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/elegant-icons-style.css -------------------------------------------------------------------------------- /src/main/resources/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/font-awesome.css -------------------------------------------------------------------------------- /src/main/resources/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/fullcalendar.css -------------------------------------------------------------------------------- /src/main/resources/static/css/jquery-jvectormap-1.2.2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/jquery-jvectormap-1.2.2.css -------------------------------------------------------------------------------- /src/main/resources/static/css/jquery-ui-1.10.4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/jquery-ui-1.10.4.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/line-icons.css -------------------------------------------------------------------------------- /src/main/resources/static/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/owl.carousel.css -------------------------------------------------------------------------------- /src/main/resources/static/css/style-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/style-responsive.css -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /src/main/resources/static/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/widgets.css -------------------------------------------------------------------------------- /src/main/resources/static/css/xcharts.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/css/xcharts.min.css -------------------------------------------------------------------------------- /src/main/resources/static/fonts/ElegantIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/ElegantIcons.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/ElegantIcons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/ElegantIcons.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/ElegantIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/ElegantIcons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/ElegantIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/ElegantIcons.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/img/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/Germany.png -------------------------------------------------------------------------------- /src/main/resources/static/img/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/India.png -------------------------------------------------------------------------------- /src/main/resources/static/img/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/Russia.png -------------------------------------------------------------------------------- /src/main/resources/static/img/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/Spain.png -------------------------------------------------------------------------------- /src/main/resources/static/img/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/arrow-up.png -------------------------------------------------------------------------------- /src/main/resources/static/img/avatar-mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/avatar-mini.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/avatar-mini2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/avatar-mini2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/avatar-mini3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/avatar-mini3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/avatar-mini4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/avatar-mini4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/avatar1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/avatar1_small.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/bg-1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/bg-11.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/chart-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/chart-texture.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/chat-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/chat-avatar.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/chat-avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/chat-avatar2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/customSelect-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/customSelect-arrow.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/geekslabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/geekslabs.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/line-icon-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/line-icon-c.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/line-icon-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/line-icon-hover.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/line-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/line-icon.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/search-line-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/search-line-icon.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/social.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/weather-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/weather-hover.png -------------------------------------------------------------------------------- /src/main/resources/static/img/icons/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/icons/weather.png -------------------------------------------------------------------------------- /src/main/resources/static/img/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/left-arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/logo-big.png -------------------------------------------------------------------------------- /src/main/resources/static/img/mail-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/mail-avatar.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/adaoma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/adaoma.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/booboo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/booboo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/jadon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/jadon.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/james.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/james.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/jani.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/jani.JPG -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/jeffrey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/jeffrey.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/kindsonthegenius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/kindsonthegenius.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/liudmyla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/liudmyla.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/onyx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/onyx.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/osasu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/osasu.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/praise.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/praise.JPG -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/saffron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/saffron.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/solace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/solace.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photos/yasmine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/photos/yasmine.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/profile-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/profile-avatar.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/profile-widget-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/profile-widget-avatar.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/right-arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/img/sample-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/sample-img-1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/sample-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/sample-img-2.png -------------------------------------------------------------------------------- /src/main/resources/static/img/sample-img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/sample-img-3.png -------------------------------------------------------------------------------- /src/main/resources/static/img/search-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/search-icon.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/user.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/user22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/user22.png -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/10.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/11.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/12.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/vehicles/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/img/vehicles/9.jpg -------------------------------------------------------------------------------- /src/main/resources/static/js/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/additional-methods.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap-colorpicker.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap-switch.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-wysiwyg-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap-wysiwyg-custom.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-wysiwyg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap-wysiwyg.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/calendar-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/calendar-custom.js -------------------------------------------------------------------------------- /src/main/resources/static/js/chartjs-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/chartjs-custom.js -------------------------------------------------------------------------------- /src/main/resources/static/js/charts-flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/charts-flot.js -------------------------------------------------------------------------------- /src/main/resources/static/js/charts-other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/charts-other.js -------------------------------------------------------------------------------- /src/main/resources/static/js/charts-xcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/charts-xcharts.js -------------------------------------------------------------------------------- /src/main/resources/static/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/charts.js -------------------------------------------------------------------------------- /src/main/resources/static/js/daterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/daterangepicker.js -------------------------------------------------------------------------------- /src/main/resources/static/js/dynamic-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/dynamic-table.js -------------------------------------------------------------------------------- /src/main/resources/static/js/easy-pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/easy-pie-chart.js -------------------------------------------------------------------------------- /src/main/resources/static/js/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/excanvas.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/form-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/form-component.js -------------------------------------------------------------------------------- /src/main/resources/static/js/form-validation-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/form-validation-script.js -------------------------------------------------------------------------------- /src/main/resources/static/js/fullcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/fullcalendar.js -------------------------------------------------------------------------------- /src/main/resources/static/js/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/fullcalendar.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/ga.js -------------------------------------------------------------------------------- /src/main/resources/static/js/gdp-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/gdp-data.js -------------------------------------------------------------------------------- /src/main/resources/static/js/gritter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/gritter.js -------------------------------------------------------------------------------- /src/main/resources/static/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/html5shiv.js -------------------------------------------------------------------------------- /src/main/resources/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/index.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery-jvectormap-1.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery-jvectormap-1.2.2.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery-ui-1.9.2.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery-ui-1.9.2.custom.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.autosize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.autosize.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.customSelect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.customSelect.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.flot.pie.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.hotkeys.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.localscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.localscroll.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.nicescroll.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.placeholder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.placeholder.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.rateit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.rateit.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.smartWizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.smartWizard.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.sparkline-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.sparkline-11.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.sparkline.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.stepy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.stepy.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.tagsinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.tagsinput.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/jquery.validate.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/lte-ie7.js -------------------------------------------------------------------------------- /src/main/resources/static/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/moment.js -------------------------------------------------------------------------------- /src/main/resources/static/js/morris-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/morris-script.js -------------------------------------------------------------------------------- /src/main/resources/static/js/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/morris.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/owl.carousel.js -------------------------------------------------------------------------------- /src/main/resources/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/scripts.js -------------------------------------------------------------------------------- /src/main/resources/static/js/sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/sliders.js -------------------------------------------------------------------------------- /src/main/resources/static/js/sparkline-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/sparkline-chart.js -------------------------------------------------------------------------------- /src/main/resources/static/js/sparklines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/sparklines.js -------------------------------------------------------------------------------- /src/main/resources/static/js/xcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/static/js/xcharts.min.js -------------------------------------------------------------------------------- /src/main/resources/templates/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/_layout.html -------------------------------------------------------------------------------- /src/main/resources/templates/accessDenied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accessDenied.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/invoiceAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/invoiceAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/invoiceDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/invoiceDetails.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/invoiceEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/invoiceEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/invoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/invoices.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/transactionAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/transactionAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/accounts/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/accounts/transactions.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/404.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/basic_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/basic_table.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/blank.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/buttons.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/chart-chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/chart-chartjs.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/contact.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/form_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/form_component.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/form_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/form_validation.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/general.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/grids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/grids.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/login.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/profile.html -------------------------------------------------------------------------------- /src/main/resources/templates/assets/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/assets/widgets.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/hireAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/hireAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/hireDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/hireDetails.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/hireEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/hireEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/hires.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/hires.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/maintenanceAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/maintenanceAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/maintenanceEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/maintenanceEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/maintenances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/maintenances.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/movementAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/movementAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/movementDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/movementDetails.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/movementEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/movementEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/movements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/movements.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleDetails.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleMakes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleMakes.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleModels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleModels.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleStatuses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleStatuses.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicleTypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicleTypes.html -------------------------------------------------------------------------------- /src/main/resources/templates/fleet/vehicles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/fleet/vehicles.html -------------------------------------------------------------------------------- /src/main/resources/templates/helpdesk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/helpdesk/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/employeeAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/employeeAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/employeeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/employeeDetails.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/employeeEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/employeeEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/employeeStatuses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/employeeStatuses.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/employeeTypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/employeeTypes.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/employees.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/hr/jobTitles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/hr/jobTitles.html -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/clientAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/clientAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/clientEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/clientEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/clients.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/contactAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/contactAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/contactEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/contactEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/contacts.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/countries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/countries.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/countryAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/countryAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/countryEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/countryEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/locationAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/locationAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/locationEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/locationEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/locations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/locations.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/stateAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/stateAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/stateDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/stateDetails.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/stateEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/stateEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/states.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/states.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/supplierAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/supplierAdd.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/supplierEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/supplierEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/parameters/suppliers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/parameters/suppliers.html -------------------------------------------------------------------------------- /src/main/resources/templates/payroll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/payroll/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/accounts.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/helpdesk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/helpdesk.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/hires.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/hires.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/hr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/hr.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/maintenance.html -------------------------------------------------------------------------------- /src/main/resources/templates/reports/vehicles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/reports/vehicles.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/security/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/security/login.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/security/register.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/security/roles.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/userEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/security/userEdit.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/src/main/resources/templates/security/users.html -------------------------------------------------------------------------------- /~$odules.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KindsonTheGenius/fleetms-v2/HEAD/~$odules.docx --------------------------------------------------------------------------------