├── .dockerignore ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── LICENSE ├── db └── .gitkeep ├── docker-compose.yml ├── docs └── images │ ├── app-screens │ ├── agency.png │ ├── buses.png │ ├── dashboard.png │ ├── login.png │ ├── profile.png │ ├── signup.png │ └── trips.png │ ├── db-schema.png │ ├── project-structure.png │ ├── spring-framework.png │ ├── swagger-screens │ ├── swagger-1.png │ ├── swagger-2.png │ ├── swagger-3.png │ ├── swagger-4.png │ └── swagger-5.png │ └── ui-layout.png ├── mvnw ├── mvnw.cmd ├── pom.xml ├── readme.md └── src ├── main ├── java │ └── com │ │ └── starterkit │ │ └── springboot │ │ └── brs │ │ ├── BusReservationSystemApplication.java │ │ ├── config │ │ ├── BrsConfiguration.java │ │ ├── FakeController.java │ │ ├── PageConfig.java │ │ └── PropertiesConfig.java │ │ ├── controller │ │ └── v1 │ │ │ ├── api │ │ │ ├── BusReservationController.java │ │ │ └── UserController.java │ │ │ ├── command │ │ │ ├── AdminSignupFormCommand.java │ │ │ ├── AgencyFormCommand.java │ │ │ ├── BusFormCommand.java │ │ │ ├── PasswordFormCommand.java │ │ │ ├── ProfileFormCommand.java │ │ │ └── TripFormCommand.java │ │ │ ├── request │ │ │ ├── BookTicketRequest.java │ │ │ ├── GetTripSchedulesRequest.java │ │ │ └── UserSignupRequest.java │ │ │ └── ui │ │ │ ├── AdminController.java │ │ │ └── DashboardController.java │ │ ├── dto │ │ ├── mapper │ │ │ ├── TicketMapper.java │ │ │ ├── TripMapper.java │ │ │ ├── TripScheduleMapper.java │ │ │ └── UserMapper.java │ │ ├── model │ │ │ ├── bus │ │ │ │ ├── AgencyDto.java │ │ │ │ ├── BusDto.java │ │ │ │ ├── StopDto.java │ │ │ │ ├── TicketDto.java │ │ │ │ ├── TripDto.java │ │ │ │ └── TripScheduleDto.java │ │ │ └── user │ │ │ │ ├── RoleDto.java │ │ │ │ └── UserDto.java │ │ └── response │ │ │ ├── Response.java │ │ │ └── ResponseError.java │ │ ├── exception │ │ ├── BRSException.java │ │ ├── CustomizedResponseEntityExceptionHandler.java │ │ ├── EntityType.java │ │ └── ExceptionType.java │ │ ├── model │ │ ├── bus │ │ │ ├── Agency.java │ │ │ ├── Bus.java │ │ │ ├── Stop.java │ │ │ ├── Ticket.java │ │ │ ├── Trip.java │ │ │ └── TripSchedule.java │ │ └── user │ │ │ ├── Role.java │ │ │ ├── User.java │ │ │ └── UserRoles.java │ │ ├── repository │ │ ├── bus │ │ │ ├── AgencyRepository.java │ │ │ ├── BusRepository.java │ │ │ ├── StopRepository.java │ │ │ ├── TicketRepository.java │ │ │ ├── TripRepository.java │ │ │ └── TripScheduleRepository.java │ │ └── user │ │ │ ├── RoleRepository.java │ │ │ └── UserRepository.java │ │ ├── security │ │ ├── CustomUserDetailsService.java │ │ ├── MultiHttpSecurityConfig.java │ │ ├── SecurityConstants.java │ │ ├── api │ │ │ ├── ApiJWTAuthenticationFilter.java │ │ │ └── ApiJWTAuthorizationFilter.java │ │ └── form │ │ │ ├── CustomAuthenticationSuccessHandler.java │ │ │ ├── CustomLogoutSuccessHandler.java │ │ │ └── FormBasedJWTAuthenticationFilter.java │ │ ├── service │ │ ├── BusReservationService.java │ │ ├── BusReservationServiceImpl.java │ │ ├── UserService.java │ │ └── UserServiceImpl.java │ │ └── util │ │ ├── DateUtils.java │ │ └── RandomStringUtil.java └── resources │ ├── application-prod.properties │ ├── application-uat.properties │ ├── application.properties │ ├── custom.properties │ ├── static │ ├── auth │ │ ├── css │ │ │ ├── style.css │ │ │ └── style.css.map │ │ ├── fonts │ │ │ ├── material-icon │ │ │ │ ├── css │ │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ │ └── material-design-iconic-font.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ │ └── Material-Design-Iconic-Font.woff2 │ │ │ └── poppins │ │ │ │ ├── poppins-v5-latin-300.eot │ │ │ │ ├── poppins-v5-latin-300.svg │ │ │ │ ├── poppins-v5-latin-300.ttf │ │ │ │ ├── poppins-v5-latin-300.woff │ │ │ │ ├── poppins-v5-latin-300.woff2 │ │ │ │ ├── poppins-v5-latin-300italic.eot │ │ │ │ ├── poppins-v5-latin-300italic.svg │ │ │ │ ├── poppins-v5-latin-300italic.ttf │ │ │ │ ├── poppins-v5-latin-300italic.woff │ │ │ │ ├── poppins-v5-latin-300italic.woff2 │ │ │ │ ├── poppins-v5-latin-500.eot │ │ │ │ ├── poppins-v5-latin-500.svg │ │ │ │ ├── poppins-v5-latin-500.ttf │ │ │ │ ├── poppins-v5-latin-500.woff │ │ │ │ ├── poppins-v5-latin-500.woff2 │ │ │ │ ├── poppins-v5-latin-500italic.eot │ │ │ │ ├── poppins-v5-latin-500italic.svg │ │ │ │ ├── poppins-v5-latin-500italic.ttf │ │ │ │ ├── poppins-v5-latin-500italic.woff │ │ │ │ ├── poppins-v5-latin-500italic.woff2 │ │ │ │ ├── poppins-v5-latin-600.eot │ │ │ │ ├── poppins-v5-latin-600.svg │ │ │ │ ├── poppins-v5-latin-600.ttf │ │ │ │ ├── poppins-v5-latin-600.woff │ │ │ │ ├── poppins-v5-latin-600.woff2 │ │ │ │ ├── poppins-v5-latin-700.eot │ │ │ │ ├── poppins-v5-latin-700.svg │ │ │ │ ├── poppins-v5-latin-700.ttf │ │ │ │ ├── poppins-v5-latin-700.woff │ │ │ │ ├── poppins-v5-latin-700.woff2 │ │ │ │ ├── poppins-v5-latin-700italic.eot │ │ │ │ ├── poppins-v5-latin-700italic.svg │ │ │ │ ├── poppins-v5-latin-700italic.ttf │ │ │ │ ├── poppins-v5-latin-700italic.woff │ │ │ │ ├── poppins-v5-latin-700italic.woff2 │ │ │ │ ├── poppins-v5-latin-800.eot │ │ │ │ ├── poppins-v5-latin-800.svg │ │ │ │ ├── poppins-v5-latin-800.ttf │ │ │ │ ├── poppins-v5-latin-800.woff │ │ │ │ ├── poppins-v5-latin-800.woff2 │ │ │ │ ├── poppins-v5-latin-800italic.eot │ │ │ │ ├── poppins-v5-latin-800italic.svg │ │ │ │ ├── poppins-v5-latin-800italic.ttf │ │ │ │ ├── poppins-v5-latin-800italic.woff │ │ │ │ ├── poppins-v5-latin-800italic.woff2 │ │ │ │ ├── poppins-v5-latin-900.eot │ │ │ │ ├── poppins-v5-latin-900.svg │ │ │ │ ├── poppins-v5-latin-900.ttf │ │ │ │ ├── poppins-v5-latin-900.woff │ │ │ │ ├── poppins-v5-latin-900.woff2 │ │ │ │ ├── poppins-v5-latin-italic.eot │ │ │ │ ├── poppins-v5-latin-italic.svg │ │ │ │ ├── poppins-v5-latin-italic.ttf │ │ │ │ ├── poppins-v5-latin-italic.woff │ │ │ │ ├── poppins-v5-latin-italic.woff2 │ │ │ │ ├── poppins-v5-latin-regular.eot │ │ │ │ ├── poppins-v5-latin-regular.svg │ │ │ │ ├── poppins-v5-latin-regular.ttf │ │ │ │ ├── poppins-v5-latin-regular.woff │ │ │ │ ├── poppins-v5-latin-regular.woff2 │ │ │ │ ├── roboto-condensed-v16-latin-700.eot │ │ │ │ ├── roboto-condensed-v16-latin-700.svg │ │ │ │ ├── roboto-condensed-v16-latin-700.ttf │ │ │ │ ├── roboto-condensed-v16-latin-700.woff │ │ │ │ ├── roboto-condensed-v16-latin-700.woff2 │ │ │ │ ├── roboto-condensed-v16-latin-700italic.eot │ │ │ │ ├── roboto-condensed-v16-latin-700italic.svg │ │ │ │ ├── roboto-condensed-v16-latin-700italic.ttf │ │ │ │ ├── roboto-condensed-v16-latin-700italic.woff │ │ │ │ ├── roboto-condensed-v16-latin-700italic.woff2 │ │ │ │ ├── roboto-condensed-v16-latin-italic.eot │ │ │ │ ├── roboto-condensed-v16-latin-italic.svg │ │ │ │ ├── roboto-condensed-v16-latin-italic.ttf │ │ │ │ ├── roboto-condensed-v16-latin-italic.woff │ │ │ │ ├── roboto-condensed-v16-latin-italic.woff2 │ │ │ │ ├── roboto-condensed-v16-latin-regular.eot │ │ │ │ ├── roboto-condensed-v16-latin-regular.svg │ │ │ │ ├── roboto-condensed-v16-latin-regular.ttf │ │ │ │ ├── roboto-condensed-v16-latin-regular.woff │ │ │ │ └── roboto-condensed-v16-latin-regular.woff2 │ │ ├── images │ │ │ ├── signin-image.jpg │ │ │ └── signup-image.jpg │ │ ├── scss │ │ │ ├── common │ │ │ │ ├── extend.scss │ │ │ │ ├── fonts.scss │ │ │ │ ├── global.scss │ │ │ │ ├── minxi.scss │ │ │ │ └── variables.scss │ │ │ ├── layouts │ │ │ │ ├── main.scss │ │ │ │ └── responsive.scss │ │ │ └── style.scss │ │ └── vendor │ │ │ └── jquery │ │ │ ├── jquery-ui.min.js │ │ │ └── jquery.min.js │ ├── dashboard │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── background │ │ │ │ │ └── profile-bg.jpg │ │ │ │ ├── big │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── img1.jpg │ │ │ │ │ ├── img2.jpg │ │ │ │ │ ├── img3.jpg │ │ │ │ │ ├── img4.jpg │ │ │ │ │ ├── img5.jpg │ │ │ │ │ └── img6.jpg │ │ │ │ ├── custom-select.png │ │ │ │ ├── favicon.png │ │ │ │ ├── logo-light-icon.png │ │ │ │ ├── logo-light-text.png │ │ │ │ ├── logo-text.png │ │ │ │ ├── logo.png │ │ │ │ └── users │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 5.jpg │ │ │ │ │ ├── 6.jpg │ │ │ │ │ ├── 7.jpg │ │ │ │ │ ├── 8.jpg │ │ │ │ │ ├── d1.jpg │ │ │ │ │ ├── d2.jpg │ │ │ │ │ ├── d3.jpg │ │ │ │ │ ├── d4.jpg │ │ │ │ │ ├── d5.jpg │ │ │ │ │ └── profile.png │ │ │ └── plugins │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── tether.min.js │ │ │ │ ├── c3-master │ │ │ │ ├── c3.min.css │ │ │ │ └── c3.min.js │ │ │ │ ├── chartist-js │ │ │ │ └── dist │ │ │ │ │ ├── chartist-init.css │ │ │ │ │ ├── chartist-init.js │ │ │ │ │ ├── chartist.css │ │ │ │ │ ├── chartist.css.map │ │ │ │ │ ├── chartist.js │ │ │ │ │ ├── chartist.min.css │ │ │ │ │ ├── chartist.min.js │ │ │ │ │ ├── chartist.min.js.map │ │ │ │ │ └── scss │ │ │ │ │ ├── chartist.scss │ │ │ │ │ └── settings │ │ │ │ │ └── _chartist-settings.scss │ │ │ │ ├── chartist-plugin-tooltip-master │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── chartist-plugin-tooltip.css │ │ │ │ │ ├── chartist-plugin-tooltip.css.map │ │ │ │ │ ├── chartist-plugin-tooltip.js │ │ │ │ │ ├── chartist-plugin-tooltip.min.js │ │ │ │ │ └── chartist-plugin-tooltip.min.js.map │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── css │ │ │ │ │ │ ├── chartist-plugin-tooltip.css │ │ │ │ │ │ └── chartist-plugin-tooltip.css.map │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── chartist-plugin-tooltip.js │ │ │ │ │ └── scss │ │ │ │ │ │ └── chartist-plugin-tooltip.scss │ │ │ │ ├── tasks │ │ │ │ │ ├── aliases.yml │ │ │ │ │ ├── clean.js │ │ │ │ │ ├── copy.js │ │ │ │ │ ├── jasmine.js │ │ │ │ │ ├── jshint.js │ │ │ │ │ ├── sass.js │ │ │ │ │ ├── uglify.js │ │ │ │ │ └── umd.js │ │ │ │ └── test │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── runner.html │ │ │ │ │ └── spec │ │ │ │ │ └── spec-tooltip.js │ │ │ │ ├── d3 │ │ │ │ ├── API.md │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── d3.js │ │ │ │ ├── d3.min-v4.js │ │ │ │ └── d3.min.js │ │ │ │ ├── gmaps │ │ │ │ ├── gmaps.js │ │ │ │ ├── gmaps.min.js │ │ │ │ ├── gmaps.min.js.map │ │ │ │ ├── jquery.gmaps.js │ │ │ │ └── lib │ │ │ │ │ ├── gmaps.controls.js │ │ │ │ │ ├── gmaps.core.js │ │ │ │ │ ├── gmaps.events.js │ │ │ │ │ ├── gmaps.geofences.js │ │ │ │ │ ├── gmaps.geometry.js │ │ │ │ │ ├── gmaps.layers.js │ │ │ │ │ ├── gmaps.map_types.js │ │ │ │ │ ├── gmaps.markers.js │ │ │ │ │ ├── gmaps.native_extensions.js │ │ │ │ │ ├── gmaps.overlays.js │ │ │ │ │ ├── gmaps.routes.js │ │ │ │ │ ├── gmaps.static.js │ │ │ │ │ ├── gmaps.streetview.js │ │ │ │ │ ├── gmaps.styles.js │ │ │ │ │ └── gmaps.utils.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.min.js │ │ │ │ └── sticky-kit-master │ │ │ │ └── dist │ │ │ │ ├── sticky-kit.js │ │ │ │ └── sticky-kit.min.js │ │ └── html │ │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── colors │ │ │ │ └── blue.css │ │ │ ├── spinners.css │ │ │ └── style.css │ │ │ ├── js │ │ │ ├── custom.js │ │ │ ├── custom.min.js │ │ │ ├── dashboard1.js │ │ │ ├── jquery.slimscroll.js │ │ │ ├── sidebarmenu.js │ │ │ └── waves.js │ │ │ └── scss │ │ │ ├── app.scss │ │ │ ├── colors │ │ │ └── blue.scss │ │ │ ├── grid.scss │ │ │ ├── icons │ │ │ ├── flag-icon-css │ │ │ │ ├── flag-icon.min.css │ │ │ │ └── flags │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── less │ │ │ │ │ ├── animated.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── screen-reader.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ ├── old │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont-old.ttf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── less │ │ │ │ │ │ ├── animated.less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── extras.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── spinning.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ └── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── linea-icons │ │ │ │ ├── fonts │ │ │ │ │ ├── linea-arrows-10.eot │ │ │ │ │ ├── linea-arrows-10.svg │ │ │ │ │ ├── linea-arrows-10.ttf │ │ │ │ │ ├── linea-arrows-10.woff │ │ │ │ │ ├── linea-basic-10.eot │ │ │ │ │ ├── linea-basic-10.svg │ │ │ │ │ ├── linea-basic-10.ttf │ │ │ │ │ ├── linea-basic-10.woff │ │ │ │ │ ├── linea-basic-elaboration-10.eot │ │ │ │ │ ├── linea-basic-elaboration-10.svg │ │ │ │ │ ├── linea-basic-elaboration-10.ttf │ │ │ │ │ ├── linea-basic-elaboration-10.woff │ │ │ │ │ ├── linea-ecommerce-10.eot │ │ │ │ │ ├── linea-ecommerce-10.svg │ │ │ │ │ ├── linea-ecommerce-10.ttf │ │ │ │ │ ├── linea-ecommerce-10.woff │ │ │ │ │ ├── linea-music-10.eot │ │ │ │ │ ├── linea-music-10.svg │ │ │ │ │ ├── linea-music-10.ttf │ │ │ │ │ ├── linea-music-10.woff │ │ │ │ │ ├── linea-software-10.eot │ │ │ │ │ ├── linea-software-10.svg │ │ │ │ │ ├── linea-software-10.ttf │ │ │ │ │ ├── linea-software-10.woff │ │ │ │ │ ├── linea-weather-10.eot │ │ │ │ │ ├── linea-weather-10.svg │ │ │ │ │ ├── linea-weather-10.ttf │ │ │ │ │ └── linea-weather-10.woff │ │ │ │ ├── linea.css │ │ │ │ ├── linea.less │ │ │ │ └── linea.scss │ │ │ ├── material-design-iconic-font │ │ │ │ ├── css │ │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ │ ├── material-design-iconic-font.min.css │ │ │ │ │ └── materialdesignicons.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ │ ├── Material-Design-Iconic-Font.woff2 │ │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ ├── simple-line-icons │ │ │ │ ├── css │ │ │ │ │ └── simple-line-icons.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ │ ├── less │ │ │ │ │ └── simple-line-icons.less │ │ │ │ └── scss │ │ │ │ │ └── simple-line-icons.scss │ │ │ ├── themify-icons │ │ │ │ ├── fonts │ │ │ │ │ ├── themify.eot │ │ │ │ │ ├── themify.svg │ │ │ │ │ ├── themify.ttf │ │ │ │ │ └── themify.woff │ │ │ │ ├── ie7 │ │ │ │ │ ├── ie7.css │ │ │ │ │ └── ie7.js │ │ │ │ ├── themify-icons.css │ │ │ │ └── themify-icons.less │ │ │ └── weather-icons │ │ │ │ ├── css │ │ │ │ ├── weather-icons-core.css │ │ │ │ ├── weather-icons-variables.css │ │ │ │ ├── weather-icons-wind.css │ │ │ │ ├── weather-icons-wind.min.css │ │ │ │ ├── weather-icons.css │ │ │ │ └── weather-icons.min.css │ │ │ │ ├── fonts │ │ │ │ ├── weathericons-regular-webfont.eot │ │ │ │ ├── weathericons-regular-webfont.svg │ │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ │ ├── weathericons-regular-webfont.woff │ │ │ │ └── weathericons-regular-webfont.woff2 │ │ │ │ ├── less │ │ │ │ ├── css │ │ │ │ │ ├── variables-beaufort.css │ │ │ │ │ ├── variables-day.css │ │ │ │ │ ├── variables-direction.css │ │ │ │ │ ├── variables-misc.css │ │ │ │ │ ├── variables-moon.css │ │ │ │ │ ├── variables-neutral.css │ │ │ │ │ ├── variables-night.css │ │ │ │ │ ├── variables-time.css │ │ │ │ │ └── variables-wind-names.css │ │ │ │ ├── icon-classes │ │ │ │ │ ├── classes-beaufort.less │ │ │ │ │ ├── classes-day.less │ │ │ │ │ ├── classes-direction.less │ │ │ │ │ ├── classes-misc.less │ │ │ │ │ ├── classes-moon-aliases.less │ │ │ │ │ ├── classes-moon.less │ │ │ │ │ ├── classes-neutral.less │ │ │ │ │ ├── classes-night.less │ │ │ │ │ ├── classes-time.less │ │ │ │ │ ├── classes-wind-aliases.less │ │ │ │ │ ├── classes-wind-degrees.less │ │ │ │ │ └── classes-wind.less │ │ │ │ ├── icon-variables │ │ │ │ │ ├── variables-beaufort.less │ │ │ │ │ ├── variables-day.less │ │ │ │ │ ├── variables-direction.less │ │ │ │ │ ├── variables-misc.less │ │ │ │ │ ├── variables-moon.less │ │ │ │ │ ├── variables-neutral.less │ │ │ │ │ ├── variables-night.less │ │ │ │ │ ├── variables-time.less │ │ │ │ │ └── variables-wind-names.less │ │ │ │ ├── mappings │ │ │ │ │ ├── wi-forecast-io.less │ │ │ │ │ ├── wi-owm.less │ │ │ │ │ ├── wi-wmo4680.less │ │ │ │ │ └── wi-yahoo.less │ │ │ │ ├── weather-icons-classes.less │ │ │ │ ├── weather-icons-core.less │ │ │ │ ├── weather-icons-variables.less │ │ │ │ ├── weather-icons-wind.less │ │ │ │ ├── weather-icons-wind.min.less │ │ │ │ ├── weather-icons.less │ │ │ │ └── weather-icons.min.less │ │ │ │ └── sass │ │ │ │ ├── icon-classes │ │ │ │ ├── classes-beaufort.scss │ │ │ │ ├── classes-day.scss │ │ │ │ ├── classes-direction.scss │ │ │ │ ├── classes-misc.scss │ │ │ │ ├── classes-moon-aliases.scss │ │ │ │ ├── classes-moon.scss │ │ │ │ ├── classes-neutral.scss │ │ │ │ ├── classes-night.scss │ │ │ │ ├── classes-time.scss │ │ │ │ ├── classes-wind-aliases.scss │ │ │ │ ├── classes-wind-degrees.scss │ │ │ │ └── classes-wind.scss │ │ │ │ ├── icon-variables │ │ │ │ ├── variables-beaufort.scss │ │ │ │ ├── variables-day.scss │ │ │ │ ├── variables-direction.scss │ │ │ │ ├── variables-misc.scss │ │ │ │ ├── variables-moon.scss │ │ │ │ ├── variables-neutral.scss │ │ │ │ ├── variables-night.scss │ │ │ │ ├── variables-time.scss │ │ │ │ └── variables-wind-names.scss │ │ │ │ ├── mappings │ │ │ │ ├── wi-forecast-io.scss │ │ │ │ ├── wi-owm.scss │ │ │ │ ├── wi-wmo4680.scss │ │ │ │ └── wi-yahoo.scss │ │ │ │ ├── weather-icons-classes.scss │ │ │ │ ├── weather-icons-core.scss │ │ │ │ ├── weather-icons-variables.scss │ │ │ │ ├── weather-icons-wind.min.scss │ │ │ │ ├── weather-icons-wind.scss │ │ │ │ ├── weather-icons.min.scss │ │ │ │ └── weather-icons.scss │ │ │ ├── material.scss │ │ │ ├── pages.scss │ │ │ ├── prepros-6.config │ │ │ ├── responsive.scss │ │ │ ├── sidebar.scss │ │ │ ├── style.scss │ │ │ ├── variable.scss │ │ │ └── widgets.scss │ └── favicon.png │ └── templates │ ├── agency.html │ ├── bus.html │ ├── dashboard.html │ ├── error.html │ ├── fragments │ ├── footer.html │ ├── header.html │ ├── navigation.html │ └── sidebar.html │ ├── layout │ └── layout.html │ ├── login.html │ ├── profile.html │ ├── signup.html │ └── trip.html └── test └── java └── com └── starterkit └── springboot └── brs └── BusReservationSystemApplicationTests.java /.dockerignore: -------------------------------------------------------------------------------- 1 | db/data 2 | target/classes 3 | target/generated-sources 4 | target/generated-test-sources 5 | target/maven-archiver 6 | target/maven-status 7 | target/surefire 8 | target/test-classes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | HELP.md 2 | /target/ 3 | !.mvn/wrapper/maven-wrapper.jar 4 | 5 | ### STS ### 6 | .apt_generated 7 | .classpath 8 | .factorypath 9 | .project 10 | .settings 11 | .springBeans 12 | .sts4-cache 13 | 14 | ### IntelliJ IDEA ### 15 | .idea 16 | *.iws 17 | *.iml 18 | *.ipr 19 | 20 | ### NetBeans ### 21 | /nbproject/private/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ 26 | /build/ 27 | 28 | ### Database ### 29 | db/data/* 30 | 31 | #mac-os 32 | *.DS_Store 33 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # our base build image 2 | FROM maven:3.6.0-jdk-8 as maven 3 | 4 | # copy the project files 5 | COPY ./pom.xml ./pom.xml 6 | 7 | # build all dependencies 8 | RUN mvn dependency:go-offline -B 9 | 10 | # copy your other files 11 | COPY ./src ./src 12 | 13 | # build for release 14 | RUN mvn package -DskipTests 15 | 16 | # our final base image 17 | FROM openjdk:8-jre-alpine 18 | 19 | # set deployment directory 20 | WORKDIR /my-project 21 | 22 | # copy over the built artifact from the maven image 23 | COPY --from=maven target/springboot-starterkit-1.0.jar ./ 24 | 25 | # set the startup command to run your binary 26 | CMD ["java", "-jar", "./springboot-starterkit-1.0.jar"] 27 | -------------------------------------------------------------------------------- /db/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/db/.gitkeep -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.5' 2 | services: 3 | mongodb: 4 | image: mongo:latest 5 | restart: always 6 | container_name: "mongodb" 7 | environment: 8 | - MONGO_DATA_DIR=/db/data 9 | - MONGO_LOG_DIR=/dev/null 10 | volumes: 11 | - ./db/data:/data/db 12 | ports: 13 | - 27017:27017 14 | command: mongod --bind_ip_all --logpath=/dev/null # --quiet 15 | 16 | web: 17 | build: . 18 | links: 19 | - mongodb 20 | container_name: BRS-Service 21 | restart: on-failure 22 | ports: 23 | - "8080:8080" 24 | environment: 25 | - MONGODB_PORT=27017 26 | - MONGODB_SCHEMA=brs 27 | - MONGODB_HOST=mongodb 28 | - LOG_LEVEL=DEBUG 29 | - SPRING_PROFILES_ACTIVE=prod 30 | depends_on: 31 | - mongodb -------------------------------------------------------------------------------- /docs/images/app-screens/agency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/agency.png -------------------------------------------------------------------------------- /docs/images/app-screens/buses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/buses.png -------------------------------------------------------------------------------- /docs/images/app-screens/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/dashboard.png -------------------------------------------------------------------------------- /docs/images/app-screens/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/login.png -------------------------------------------------------------------------------- /docs/images/app-screens/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/profile.png -------------------------------------------------------------------------------- /docs/images/app-screens/signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/signup.png -------------------------------------------------------------------------------- /docs/images/app-screens/trips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/app-screens/trips.png -------------------------------------------------------------------------------- /docs/images/db-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/db-schema.png -------------------------------------------------------------------------------- /docs/images/project-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/project-structure.png -------------------------------------------------------------------------------- /docs/images/spring-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/spring-framework.png -------------------------------------------------------------------------------- /docs/images/swagger-screens/swagger-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/swagger-screens/swagger-1.png -------------------------------------------------------------------------------- /docs/images/swagger-screens/swagger-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/swagger-screens/swagger-2.png -------------------------------------------------------------------------------- /docs/images/swagger-screens/swagger-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/swagger-screens/swagger-3.png -------------------------------------------------------------------------------- /docs/images/swagger-screens/swagger-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/swagger-screens/swagger-4.png -------------------------------------------------------------------------------- /docs/images/swagger-screens/swagger-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/swagger-screens/swagger-5.png -------------------------------------------------------------------------------- /docs/images/ui-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/docs/images/ui-layout.png -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/config/PropertiesConfig.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.config; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.context.annotation.PropertySource; 5 | import org.springframework.core.env.Environment; 6 | import org.springframework.stereotype.Component; 7 | 8 | /** 9 | * Created by Arpit Khandelwal. 10 | */ 11 | @Component 12 | @PropertySource("classpath:custom.properties") 13 | public class PropertiesConfig { 14 | @Autowired 15 | private Environment env; 16 | 17 | public String getConfigValue(String configKey) { 18 | return env.getProperty(configKey); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/controller/v1/command/AgencyFormCommand.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.controller.v1.command; 2 | 3 | import lombok.Data; 4 | import lombok.experimental.Accessors; 5 | 6 | import javax.validation.constraints.NotBlank; 7 | import javax.validation.constraints.Size; 8 | 9 | /** 10 | * Created by Arpit Khandelwal. 11 | */ 12 | @Data 13 | @Accessors(chain = true) 14 | public class AgencyFormCommand { 15 | @NotBlank 16 | @Size(min = 5, max = 100) 17 | private String agencyName; 18 | 19 | @NotBlank 20 | @Size(max = 100) 21 | private String agencyDetails; 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/controller/v1/command/BusFormCommand.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.controller.v1.command; 2 | 3 | import lombok.Data; 4 | import lombok.experimental.Accessors; 5 | 6 | import javax.validation.constraints.Min; 7 | import javax.validation.constraints.NotBlank; 8 | import javax.validation.constraints.Size; 9 | 10 | /** 11 | * Created by Arpit Khandelwal. 12 | */ 13 | @Data 14 | @Accessors(chain = true) 15 | public class BusFormCommand { 16 | @NotBlank 17 | @Size(min = 4, max = 8) 18 | private String code; 19 | 20 | @Min(value = 10, message = "Cannot enroll a bus with capacity smaller than 10") 21 | private int capacity; 22 | 23 | @NotBlank 24 | private String make; 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/controller/v1/command/PasswordFormCommand.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.controller.v1.command; 2 | 3 | import lombok.Data; 4 | import lombok.experimental.Accessors; 5 | 6 | import javax.validation.constraints.NotBlank; 7 | import javax.validation.constraints.Size; 8 | 9 | /** 10 | * Created by Arpit Khandelwal. 11 | */ 12 | @Data 13 | @Accessors(chain = true) 14 | public class PasswordFormCommand { 15 | @NotBlank 16 | @Size(min = 5, max = 12) 17 | private String password; 18 | 19 | private String email; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/controller/v1/command/ProfileFormCommand.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.controller.v1.command; 2 | 3 | import lombok.Data; 4 | import lombok.experimental.Accessors; 5 | 6 | import javax.validation.constraints.NotBlank; 7 | import javax.validation.constraints.Size; 8 | 9 | /** 10 | * Created by Arpit Khandelwal. 11 | */ 12 | @Data 13 | @Accessors(chain = true) 14 | public class ProfileFormCommand { 15 | @NotBlank 16 | @Size(min = 1, max = 40) 17 | private String firstName; 18 | 19 | @NotBlank 20 | private String lastName; 21 | 22 | @NotBlank 23 | @Size(min = 5, max = 13) 24 | private String mobileNumber; 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/controller/v1/command/TripFormCommand.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.controller.v1.command; 2 | 3 | import lombok.Data; 4 | import lombok.experimental.Accessors; 5 | 6 | import javax.validation.constraints.NotBlank; 7 | import javax.validation.constraints.Positive; 8 | 9 | /** 10 | * Created by Arpit Khandelwal. 11 | */ 12 | @Data 13 | @Accessors(chain = true) 14 | public class TripFormCommand { 15 | @NotBlank 16 | private String sourceStop; 17 | 18 | @NotBlank 19 | private String destinationStop; 20 | 21 | @NotBlank 22 | private String busCode; 23 | 24 | @Positive 25 | private int tripDuration; 26 | 27 | @Positive 28 | private int tripFare; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/dto/model/bus/BusDto.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.dto.model.bus; 2 | 3 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 4 | import com.fasterxml.jackson.annotation.JsonInclude; 5 | import lombok.Getter; 6 | import lombok.NoArgsConstructor; 7 | import lombok.Setter; 8 | import lombok.ToString; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | * Created by Arpit Khandelwal. 13 | */ 14 | @Getter 15 | @Setter 16 | @Accessors(chain = true) 17 | @NoArgsConstructor 18 | @ToString 19 | @JsonInclude(value = JsonInclude.Include.NON_NULL) 20 | @JsonIgnoreProperties(ignoreUnknown = true) 21 | public class BusDto { 22 | 23 | private String code; 24 | 25 | private int capacity; 26 | 27 | private String make; 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/dto/model/user/RoleDto.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.dto.model.user; 2 | 3 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 4 | import com.fasterxml.jackson.annotation.JsonInclude; 5 | import lombok.Getter; 6 | import lombok.NoArgsConstructor; 7 | import lombok.Setter; 8 | import lombok.ToString; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | * Created by Arpit Khandelwal. 13 | */ 14 | @Getter 15 | @Setter 16 | @Accessors(chain = true) 17 | @NoArgsConstructor 18 | @ToString 19 | @JsonInclude(value = JsonInclude.Include.NON_NULL) 20 | @JsonIgnoreProperties(ignoreUnknown = true) 21 | public class RoleDto { 22 | private String role; 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/dto/response/ResponseError.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.dto.response; 2 | 3 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 4 | import com.fasterxml.jackson.annotation.JsonInclude; 5 | import lombok.Getter; 6 | import lombok.NoArgsConstructor; 7 | import lombok.Setter; 8 | import lombok.experimental.Accessors; 9 | 10 | import java.util.Date; 11 | 12 | /** 13 | * Created by Arpit Khandelwal 14 | */ 15 | @Getter 16 | @Setter 17 | @Accessors(chain = true) 18 | @NoArgsConstructor 19 | @JsonInclude(JsonInclude.Include.NON_NULL) 20 | @JsonIgnoreProperties(ignoreUnknown = true) 21 | public class ResponseError { 22 | private Date timestamp; 23 | private String message; 24 | private String details; 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/exception/EntityType.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.exception; 2 | 3 | /** 4 | * Created by Arpit Khandelwal. 5 | */ 6 | public enum EntityType { 7 | USER, 8 | ROLE, 9 | AGENCY, 10 | BUS, 11 | STOP, 12 | TICKET, 13 | TRIP, 14 | TRIPSCHEDULE 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/exception/ExceptionType.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.exception; 2 | 3 | /** 4 | * Created by Arpit Khandelwal. 5 | */ 6 | public enum ExceptionType { 7 | ENTITY_NOT_FOUND("not.found"), 8 | DUPLICATE_ENTITY("duplicate"), 9 | ENTITY_EXCEPTION("exception"); 10 | 11 | String value; 12 | 13 | ExceptionType(String value) { 14 | this.value = value; 15 | } 16 | 17 | String getValue() { 18 | return this.value; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/model/user/UserRoles.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.model.user; 2 | 3 | /** 4 | * Created by Arpit Khandelwal. 5 | */ 6 | public enum UserRoles { 7 | ADMIN, PASSENGER 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/bus/AgencyRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.bus; 2 | 3 | import com.starterkit.springboot.brs.model.bus.Agency; 4 | import com.starterkit.springboot.brs.model.user.User; 5 | import org.springframework.data.mongodb.repository.MongoRepository; 6 | 7 | /** 8 | * Created by Arpit Khandelwal. 9 | */ 10 | public interface AgencyRepository extends MongoRepository { 11 | Agency findByCode(String agencyCode); 12 | 13 | Agency findByOwner(User owner); 14 | 15 | Agency findByName(String name); 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/bus/BusRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.bus; 2 | 3 | import com.starterkit.springboot.brs.model.bus.Agency; 4 | import com.starterkit.springboot.brs.model.bus.Bus; 5 | import org.springframework.data.mongodb.repository.MongoRepository; 6 | 7 | /** 8 | * Created by Arpit Khandelwal. 9 | */ 10 | public interface BusRepository extends MongoRepository { 11 | Bus findByCode(String busCode); 12 | 13 | Bus findByCodeAndAgency(String busCode, Agency agency); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/bus/StopRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.bus; 2 | 3 | import com.starterkit.springboot.brs.model.bus.Stop; 4 | import org.springframework.data.mongodb.repository.MongoRepository; 5 | 6 | /** 7 | * Created by Arpit Khandelwal. 8 | */ 9 | public interface StopRepository extends MongoRepository { 10 | Stop findByCode(String code); 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/bus/TicketRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.bus; 2 | 3 | import com.starterkit.springboot.brs.model.bus.Ticket; 4 | import org.springframework.data.mongodb.repository.MongoRepository; 5 | 6 | /** 7 | * Created by Arpit Khandelwal. 8 | */ 9 | public interface TicketRepository extends MongoRepository { 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/bus/TripRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.bus; 2 | 3 | import com.starterkit.springboot.brs.model.bus.Agency; 4 | import com.starterkit.springboot.brs.model.bus.Bus; 5 | import com.starterkit.springboot.brs.model.bus.Stop; 6 | import com.starterkit.springboot.brs.model.bus.Trip; 7 | import org.springframework.data.mongodb.repository.MongoRepository; 8 | 9 | import java.util.List; 10 | 11 | /** 12 | * Created by Arpit Khandelwal. 13 | */ 14 | public interface TripRepository extends MongoRepository { 15 | Trip findBySourceStopAndDestStopAndBus(Stop source, Stop destination, Bus bus); 16 | 17 | List findAllBySourceStopAndDestStop(Stop source, Stop destination); 18 | 19 | List findByAgency(Agency agency); 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/bus/TripScheduleRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.bus; 2 | 3 | import com.starterkit.springboot.brs.model.bus.Trip; 4 | import com.starterkit.springboot.brs.model.bus.TripSchedule; 5 | import org.springframework.data.mongodb.repository.MongoRepository; 6 | 7 | /** 8 | * Created by Arpit Khandelwal. 9 | */ 10 | public interface TripScheduleRepository extends MongoRepository { 11 | TripSchedule findByTripDetailAndTripDate(Trip tripDetail, String tripDate); 12 | } -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/user/RoleRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.user; 2 | 3 | import com.starterkit.springboot.brs.model.user.Role; 4 | import org.springframework.data.mongodb.repository.MongoRepository; 5 | 6 | /** 7 | * Created by Arpit Khandelwal. 8 | */ 9 | public interface RoleRepository extends MongoRepository { 10 | 11 | Role findByRole(String role); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/repository/user/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.repository.user; 2 | 3 | import com.starterkit.springboot.brs.model.user.User; 4 | import org.springframework.data.mongodb.repository.MongoRepository; 5 | 6 | /** 7 | * Created by Arpit Khandelwal. 8 | */ 9 | public interface UserRepository extends MongoRepository { 10 | 11 | User findByEmail(String email); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/starterkit/springboot/brs/security/SecurityConstants.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs.security; 2 | 3 | /** 4 | * Created by Arpit Khandelwal. 5 | */ 6 | public interface SecurityConstants { 7 | String SECRET = "SecretKeyToGenJWTs"; 8 | String TOKEN_PREFIX = "Bearer "; 9 | String HEADER_STRING = "Authorization"; 10 | String SIGN_UP_URL = "/users/sign-up"; 11 | long EXPIRATION_TIME = 864_000_000; // 10 days 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | server.port=8080 -------------------------------------------------------------------------------- /src/main/resources/application-uat.properties: -------------------------------------------------------------------------------- 1 | server.port=8089 -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | #Default server port 2 | server.port=8080 3 | 4 | #Set active profile 5 | spring.profiles.active=@activatedProperties@ 6 | 7 | #MongoDB configuration 8 | spring.data.mongodb.database=${MONGODB_SCHEMA:springmongodb} 9 | spring.data.mongodb.host=${MONGODB_HOST:localhost} 10 | spring.data.mongodb.port=${MONGODB_PORT:27017} 11 | 12 | logging.level.web=${LOG_LEVEL:DEBUG} 13 | management.endpoints.web.exposure.include=* 14 | server.error.whitelabel.enabled=false -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/material-icon/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-300italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-500italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-600.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-800italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-900.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/poppins-v5-latin-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-italic.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/fonts/poppins/roboto-condensed-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/auth/images/signin-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/images/signin-image.jpg -------------------------------------------------------------------------------- /src/main/resources/static/auth/images/signup-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/auth/images/signup-image.jpg -------------------------------------------------------------------------------- /src/main/resources/static/auth/scss/common/extend.scss: -------------------------------------------------------------------------------- 1 | /* @extend display-flex; */ 2 | display-flex { 3 | display: flex; 4 | display: -webkit-flex; 5 | } 6 | /* @extend list-type-ulli; */ 7 | list-type-ulli { 8 | list-style-type: none; 9 | margin: 0; 10 | padding: 0; 11 | } 12 | -------------------------------------------------------------------------------- /src/main/resources/static/auth/scss/common/variables.scss: -------------------------------------------------------------------------------- 1 | $black-color : #222; 2 | $blue-color : #6dabe4; 3 | $grey-light: #999; -------------------------------------------------------------------------------- /src/main/resources/static/auth/scss/style.scss: -------------------------------------------------------------------------------- 1 | //Common 2 | @import 'common/extend.scss'; 3 | @import 'common/fonts.scss'; 4 | @import 'common/minxi.scss'; 5 | @import 'common/variables.scss'; 6 | @import 'common/global.scss'; 7 | 8 | //layout 9 | @import 'layouts/main.scss'; 10 | 11 | // Responsive 12 | @import 'layouts/responsive.scss'; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/background/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/background/profile-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/img1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/img2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/img3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/img4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/img5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/big/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/big/img6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/custom-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/custom-select.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/logo-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/logo-light-icon.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/logo-light-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/logo-light-text.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/logo-text.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/d1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/d2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/d3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/d4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/d4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/d5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/images/users/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/assets/images/users/profile.png -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # Compiled binary addons (http://nodejs.org/api/addons.html) 20 | build/Release 21 | 22 | # Dependency directory 23 | # Commenting this out is preferred by some people, see 24 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 25 | node_modules 26 | 27 | # Users Environment Variables 28 | .lock-wscript 29 | 30 | bower_components 31 | 32 | #Sass Cache 33 | .sass-cache 34 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Chartist Plugin Tooltip Changelog 2 | 3 | ### master 4 | 5 | ### 0.0.11 6 | * [BUGFIX] Tooltips now working properly on Firefox 7 | * [ENHANCEMENT] Added custom tooltip using options.tooltipFnc 8 | 9 | ### 0.0.10 10 | * [BUGFIX] Set currency default to `undefined`. Fixes issue in chartist.js 0.7.4. 11 | 12 | ### 0.0.9 13 | * [BUGFIX] Fixed new pie chart label mechanism 14 | 15 | ### 0.0.8 16 | * [BUGFIX] Removed Ember reference 17 | * [ENHANCEMENT] For pie chart tooltips also take the labels into account if no meta is given 18 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/Gruntfile.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Grunt Configurations 3 | * ==================== 4 | * 5 | * Seperate tasks and configurations are declared in '/tasks'. 6 | * 7 | * Link: https://github.com/firstandthird/load-grunt-config 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | 14 | // tracks how long a tasks take 15 | require('time-grunt')(grunt); 16 | 17 | // load task and configurations 18 | require('load-grunt-config')(grunt, { 19 | configPath: __dirname + '/tasks', 20 | data: { 21 | pkg: grunt.file.readJSON('package.json'), 22 | year: new Date().getFullYear() 23 | } 24 | }); 25 | }; 26 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chartist-plugin-tooltip", 3 | "main": [ 4 | "./dist/chartist-plugin-tooltip.min.js", 5 | "./dist/chartist-plugin-tooltip.css" 6 | ], 7 | "dependencies": { 8 | "chartist": "~0.9.4" 9 | }, 10 | "ignore": [ 11 | ".*", 12 | "Gruntfile.js", 13 | "package.json", 14 | "node_modules", 15 | "src", 16 | "test" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/dist/chartist-plugin-tooltip.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAEA,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,IAAI;EACb,UAAU,EARO,OAAO;EASxB,KAAK,EARe,OAAO;EAS3B,WAAW,EAAE,iCAAiC;EAC9C,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;EACpB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,kBAAkB;EACtC,eAAe,EAAE,kBAAkB;EACnC,aAAa,EAAE,kBAAkB;EACjC,UAAU,EAAE,kBAAkB;EAC9B,wBAAS;IACP,OAAO,EAAE,EAAE;IACX,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,IAAI;IACT,IAAI,EAAE,GAAG;IACT,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;IACT,WAAW,EAAE,KAAK;IAClB,MAAM,EAAE,sBAAsB;IAC9B,gBAAgB,EA5BD,OAAO;EA8BxB,8BAAe;IACb,OAAO,EAAE,CAAC;;AAId,kBAAmB;EACjB,cAAc,EAAE,IAAI", 4 | "sources": ["../scss/chartist-plugin-tooltip.scss"], 5 | "names": [], 6 | "file": "chartist-plugin-tooltip.css" 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/src/css/chartist-plugin-tooltip.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAEA,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,IAAI;EACb,UAAU,EARO,OAAO;EASxB,KAAK,EARe,OAAO;EAS3B,WAAW,EAAE,iCAAiC;EAC9C,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;EACpB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,kBAAkB;EACtC,eAAe,EAAE,kBAAkB;EACnC,aAAa,EAAE,kBAAkB;EACjC,UAAU,EAAE,kBAAkB;EAC9B,wBAAS;IACP,OAAO,EAAE,EAAE;IACX,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,IAAI;IACT,IAAI,EAAE,GAAG;IACT,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;IACT,WAAW,EAAE,KAAK;IAClB,MAAM,EAAE,sBAAsB;IAC9B,gBAAgB,EA5BD,OAAO;EA8BxB,8BAAe;IACb,OAAO,EAAE,CAAC;;AAId,kBAAmB;EACjB,cAAc,EAAE,IAAI", 4 | "sources": ["../scss/chartist-plugin-tooltip.scss"], 5 | "names": [], 6 | "file": "chartist-plugin-tooltip.css" 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/aliases.yml: -------------------------------------------------------------------------------- 1 | # Grunt Commands 2 | # ============== 3 | # 4 | # Use `grunt` in the root directory to select and run a specific task. 5 | 6 | default: 7 | - 'test' 8 | - 'build' 9 | 10 | # create the plugin 11 | build: 12 | - 'clean:dist' 13 | - 'sass:dist' 14 | - 'copy:dist' 15 | - 'umd' 16 | - 'uglify:dist' 17 | 18 | # tests 19 | test: 20 | - 'clean:tmp' 21 | - 'jasmine' 22 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/clean.js: -------------------------------------------------------------------------------- 1 | /** 2 | * clean 3 | * ===== 4 | * 5 | * Remove temporary and unused files. 6 | * 7 | * Link: https://github.com/gruntjs/grunt-contrib-clean 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | tmp: '<%= pkg.config.tmp %>', 15 | dist: '<%= pkg.config.dist %>' 16 | }; 17 | }; 18 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/copy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * copy 3 | * ==== 4 | * 5 | * Copies remaining files to places other tasks can use. 6 | * 7 | * Link: https://github.com/gruntjs/grunt-contrib-copy 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | dist: { 15 | files: [ 16 | { 17 | dest: '<%= pkg.config.dist %>/', 18 | src: 'LICENSE' 19 | }, 20 | { 21 | cwd: '<%= pkg.config.src %>', 22 | expand: true, 23 | flatten: true, 24 | filter: 'isFile', 25 | dest: '<%= pkg.config.dist %>/', 26 | src: 'css/**', 27 | } 28 | ] 29 | } 30 | }; 31 | }; 32 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/jasmine.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jasmine 3 | * ======= 4 | * 5 | * Test settings 6 | * 7 | * Link: https://github.com/gruntjs/grunt-contrib-jasmine 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | dist: { 15 | src: [ 16 | 'bower_components/chartist/dist/chartist.js', 17 | '<%= pkg.config.src %>/scripts/<%= pkg.config.src_name %>.js' 18 | ], 19 | options: { 20 | specs: '<%= pkg.config.test %>/spec/**/spec-*.js', 21 | helpers: '<%= pkg.config.test %>/spec/**/helper-*.js', 22 | phantomjs: { 23 | 'ignore-ssl-errors': true 24 | } 25 | } 26 | } 27 | }; 28 | }; 29 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/jshint.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jshint 3 | * ====== 4 | * 5 | * Make sure code styles are up to par and there are no obvious mistakes. 6 | * 7 | * Link: https://github.com/gruntjs/grunt-contrib-jshint 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | options: { 15 | jshintrc: '.jshintrc', 16 | reporter: require('jshint-stylish') 17 | }, 18 | all: [ 19 | 'Gruntfile.js', 20 | '<%= pkg.config.src %>/{,*/}*.js', 21 | '<%= pkg.config.site %>/scripts/{,*/}*.js' 22 | ], 23 | test: { 24 | options: { 25 | jshintrc: '<%= pkg.config.test %>/.jshintrc' 26 | }, 27 | src: ['<%= pkg.config.test %>/spec/{,*/}*.js'] 28 | } 29 | }; 30 | }; 31 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/sass.js: -------------------------------------------------------------------------------- 1 | /** 2 | * sass 3 | * ====== 4 | * 5 | * Compile scss to css 6 | * 7 | * Link: https://github.com/gruntjs/grunt-contrib-sass 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | dist: { 15 | files: [{ 16 | expand: true, 17 | cwd: '<%= pkg.config.src %>/scss', 18 | src: ['*.scss'], 19 | dest: '<%= pkg.config.src %>/css', 20 | ext: '.css' 21 | }] 22 | } 23 | }; 24 | }; 25 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/uglify.js: -------------------------------------------------------------------------------- 1 | /** 2 | * uglify 3 | * ====== 4 | * 5 | * Minify the library. 6 | * 7 | * Link: https://github.com/gruntjs/grunt-contrib-uglify 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | dist: { 15 | options: { 16 | banner: '<%= pkg.config.banner %>', 17 | sourceMap: true, 18 | sourceMapIncludeSources: true 19 | }, 20 | files: { 21 | '<%= pkg.config.dist %>/<%= pkg.config.src_name %>.min.js': ['<%= pkg.config.dist %>/<%= pkg.config.src_name %>.js'] 22 | } 23 | } 24 | }; 25 | }; 26 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/tasks/umd.js: -------------------------------------------------------------------------------- 1 | /** 2 | * umd 3 | * === 4 | * 5 | * Wraps the library into an universal module definition (AMD + CommonJS + Global). 6 | * 7 | * Link: https://github.com/bebraw/grunt-umd 8 | */ 9 | 10 | 'use strict'; 11 | 12 | module.exports = function (grunt) { 13 | return { 14 | dist: { 15 | src: '<%= pkg.config.src %>/scripts/<%= pkg.config.src_name %>.js', 16 | dest: '<%= pkg.config.dist %>/<%= pkg.config.src_name %>.js', 17 | objectToExport: 'Chartist.plugins.tooltips', 18 | deps: { 19 | default: ['Chartist'], 20 | amd: ['chartist'], 21 | cjs: ['chartist'], 22 | global: ['Chartist'] 23 | }, 24 | indent: ' ' 25 | } 26 | }; 27 | }; 28 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/chartist-plugin-tooltip-master/test/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "browser": true, 4 | "esnext": true, 5 | "bitwise": true, 6 | "camelcase": true, 7 | "curly": true, 8 | "eqeqeq": true, 9 | "immed": true, 10 | "indent": 2, 11 | "latedef": true, 12 | "newcap": true, 13 | "noarg": true, 14 | "quotmark": "single", 15 | "regexp": true, 16 | "undef": true, 17 | "unused": true, 18 | "strict": true, 19 | "trailing": true, 20 | "smarttabs": true, 21 | "globals": { 22 | "after": false, 23 | "afterEach": false, 24 | "angular": false, 25 | "before": false, 26 | "beforeEach": false, 27 | "browser": false, 28 | "describe": false, 29 | "expect": false, 30 | "inject": false, 31 | "it": false, 32 | "jasmine": false, 33 | "spyOn": false 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/gmaps/jquery.gmaps.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | map = new GMaps({ 3 | el: '#gmaps-simple', 4 | lat: 34.05, 5 | lng: -78.72, 6 | zoom: 5, 7 | panControl: false, 8 | streetViewControl: false, 9 | mapTypeControl: false, 10 | overviewMapControl: false 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/gmaps/lib/gmaps.geofences.js: -------------------------------------------------------------------------------- 1 | GMaps.prototype.checkGeofence = function(lat, lng, fence) { 2 | return fence.containsLatLng(new google.maps.LatLng(lat, lng)); 3 | }; 4 | 5 | GMaps.prototype.checkMarkerGeofence = function(marker, outside_callback) { 6 | if (marker.fences) { 7 | for (var i = 0, fence; fence = marker.fences[i]; i++) { 8 | var pos = marker.getPosition(); 9 | if (!this.checkGeofence(pos.lat(), pos.lng(), fence)) { 10 | outside_callback(marker, fence); 11 | } 12 | } 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/assets/plugins/gmaps/lib/gmaps.styles.js: -------------------------------------------------------------------------------- 1 | GMaps.prototype.addStyle = function(options) { 2 | var styledMapType = new google.maps.StyledMapType(options.styles, { name: options.styledMapName }); 3 | 4 | this.map.mapTypes.set(options.mapTypeId, styledMapType); 5 | }; 6 | 7 | GMaps.prototype.setStyle = function(mapTypeId) { 8 | this.map.setMapTypeId(mapTypeId); 9 | }; 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/lr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/nr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/pr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/rw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Flag of South Sudan 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/st.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/flag-icon-css/flags/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | _gh_pages/* 12 | 13 | .idea/* 14 | .svn/* 15 | src/website/static/* 16 | src/website/media/* 17 | 18 | bin 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | node_modules 28 | 29 | src/website/settingslocal.py 30 | stunnel.log 31 | 32 | .ruby-version 33 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/.npmignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | _gh_pages/* 12 | 13 | .idea/* 14 | .svn/* 15 | src/website/static/* 16 | src/website/media/* 17 | 18 | bin 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | node_modules 28 | 29 | src/website/settingslocal.py 30 | stunnel.log 31 | 32 | .ruby-version 33 | 34 | # don't need these in the npm package. 35 | src/ 36 | _config.yml 37 | bower.json 38 | component.json 39 | composer.json 40 | CONTRIBUTING.md 41 | Gemfile 42 | Gemfile.lock 43 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fonticons (https://fonticons.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-awesome", 3 | "description": "Font Awesome", 4 | "version": "4.2.0", 5 | "keywords": [], 6 | "homepage": "http://fontawesome.io", 7 | "dependencies": {}, 8 | "devDependencies": {}, 9 | "license": ["OFL-1.1", "MIT", "CC-BY-3.0"], 10 | "main": [ 11 | "./css/font-awesome.css", 12 | ".//fonts/*" 13 | ], 14 | "ignore": [ 15 | "*/.*", 16 | "*.json", 17 | "src", 18 | "*.yml", 19 | "Gemfile", 20 | "Gemfile.lock", 21 | "*.md" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont-old.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont-old.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/extras.less: -------------------------------------------------------------------------------- 1 | // Extras 2 | // -------------------------- 3 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/old/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-arrows-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-arrows-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-arrows-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-arrows-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-arrows-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-arrows-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-elaboration-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-elaboration-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-elaboration-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-elaboration-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-basic-elaboration-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-ecommerce-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-ecommerce-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-ecommerce-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-ecommerce-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-ecommerce-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-ecommerce-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-music-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-music-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-music-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-music-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-music-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-music-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-software-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-software-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-software-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-software-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-software-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-software-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-weather-10.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-weather-10.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-weather-10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-weather-10.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-weather-10.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/linea-icons/fonts/linea-weather-10.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/simple-line-icons/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/css/weather-icons-variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/css/weather-icons-variables.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-beaufort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-beaufort.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-day.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-direction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-direction.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-misc.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-moon.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-neutral.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-neutral.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-night.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-time.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-wind-names.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/css/variables-wind-names.css -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-classes/classes-beaufort.less: -------------------------------------------------------------------------------- 1 | .wi-wind-beaufort-0:before {content: @wind-beaufort-0;} 2 | .wi-wind-beaufort-1:before {content: @wind-beaufort-1;} 3 | .wi-wind-beaufort-2:before {content: @wind-beaufort-2;} 4 | .wi-wind-beaufort-3:before {content: @wind-beaufort-3;} 5 | .wi-wind-beaufort-4:before {content: @wind-beaufort-4;} 6 | .wi-wind-beaufort-5:before {content: @wind-beaufort-5;} 7 | .wi-wind-beaufort-6:before {content: @wind-beaufort-6;} 8 | .wi-wind-beaufort-7:before {content: @wind-beaufort-7;} 9 | .wi-wind-beaufort-8:before {content: @wind-beaufort-8;} 10 | .wi-wind-beaufort-9:before {content: @wind-beaufort-9;} 11 | .wi-wind-beaufort-10:before {content: @wind-beaufort-10;} 12 | .wi-wind-beaufort-11:before {content: @wind-beaufort-11;} 13 | .wi-wind-beaufort-12:before {content: @wind-beaufort-12;} -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-classes/classes-direction.less: -------------------------------------------------------------------------------- 1 | .wi-direction-up:before {content: @direction-up;} 2 | .wi-direction-up-right:before {content: @direction-up-right;} 3 | .wi-direction-right:before {content: @direction-right;} 4 | .wi-direction-down-right:before {content: @direction-down-right;} 5 | .wi-direction-down:before {content: @direction-down;} 6 | .wi-direction-down-left:before {content: @direction-down-left;} 7 | .wi-direction-left:before {content: @direction-left;} 8 | .wi-direction-up-left:before {content: @direction-up-left;} -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-classes/classes-time.less: -------------------------------------------------------------------------------- 1 | .wi-time-1:before {content: @time-1;} 2 | .wi-time-2:before {content: @time-2;} 3 | .wi-time-3:before {content: @time-3;} 4 | .wi-time-4:before {content: @time-4;} 5 | .wi-time-5:before {content: @time-5;} 6 | .wi-time-6:before {content: @time-6;} 7 | .wi-time-7:before {content: @time-7;} 8 | .wi-time-8:before {content: @time-8;} 9 | .wi-time-9:before {content: @time-9;} 10 | .wi-time-10:before {content: @time-10;} 11 | .wi-time-11:before {content: @time-11;} 12 | .wi-time-12:before {content: @time-12;} -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-classes/classes-wind.less: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | @wind: "\f0b1"; 4 | 5 | .@{wi-css-prefix}-wind:before { content: @wind; } 6 | .wind-rotate(@degrees) { 7 | -webkit-transform: rotate(@degrees); 8 | -moz-transform: rotate(@degrees); 9 | -ms-transform: rotate(@degrees); 10 | -o-transform: rotate(@degrees); 11 | transform: rotate(@degrees); 12 | } 13 | 14 | @import "classes-wind-degrees.less"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-variables/variables-beaufort.less: -------------------------------------------------------------------------------- 1 | @wind-beaufort-0: "\f0b7"; 2 | @wind-beaufort-1: "\f0b8"; 3 | @wind-beaufort-2: "\f0b9"; 4 | @wind-beaufort-3: "\f0ba"; 5 | @wind-beaufort-4: "\f0bb"; 6 | @wind-beaufort-5: "\f0bc"; 7 | @wind-beaufort-6: "\f0bd"; 8 | @wind-beaufort-7: "\f0be"; 9 | @wind-beaufort-8: "\f0bf"; 10 | @wind-beaufort-9: "\f0c0"; 11 | @wind-beaufort-10: "\f0c1"; 12 | @wind-beaufort-11: "\f0c2"; 13 | @wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-variables/variables-day.less: -------------------------------------------------------------------------------- 1 | @day-sunny: "\f00d"; 2 | @day-cloudy: "\f002"; 3 | @day-cloudy-gusts: "\f000"; 4 | @day-cloudy-windy: "\f001"; 5 | @day-fog: "\f003"; 6 | @day-hail: "\f004"; 7 | @day-haze: "\f0b6"; 8 | @day-lightning: "\f005"; 9 | @day-rain: "\f008"; 10 | @day-rain-mix: "\f006"; 11 | @day-rain-wind: "\f007"; 12 | @day-showers: "\f009"; 13 | @day-sleet: "\f0b2"; 14 | @day-sleet-storm: "\f068"; 15 | @day-snow: "\f00a"; 16 | @day-snow-thunderstorm: "\f06b"; 17 | @day-snow-wind: "\f065"; 18 | @day-sprinkle: "\f00b"; 19 | @day-storm-showers: "\f00e"; 20 | @day-sunny-overcast: "\f00c"; 21 | @day-thunderstorm: "\f010"; 22 | @day-windy: "\f085"; 23 | @solar-eclipse: "\f06e"; 24 | @hot: "\f072"; 25 | @day-cloudy-high: "\f07d"; 26 | @day-light-wind: "\f0c4"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-variables/variables-direction.less: -------------------------------------------------------------------------------- 1 | @direction-up: "\f058"; 2 | @direction-up-right: "\f057"; 3 | @direction-right: "\f04d"; 4 | @direction-down-right: "\f088"; 5 | @direction-down: "\f044"; 6 | @direction-down-left: "\f043"; 7 | @direction-left: "\f048"; 8 | @direction-up-left: "\f087"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-variables/variables-misc.less: -------------------------------------------------------------------------------- 1 | @alien: "\f075"; 2 | @celsius: "\f03c"; 3 | @fahrenheit: "\f045"; 4 | @degrees: "\f042"; 5 | @thermometer: "\f055"; 6 | @thermometer-exterior: "\f053"; 7 | @thermometer-internal: "\f054"; 8 | @cloud-down: "\f03d"; 9 | @cloud-up: "\f040"; 10 | @cloud-refresh: "\f03e"; 11 | @horizon: "\f047"; 12 | @horizon-alt: "\f046"; 13 | @sunrise: "\f051"; 14 | @sunset: "\f052"; 15 | @moonrise: "\f0c9"; 16 | @moonset: "\f0ca"; 17 | @refresh: "\f04c"; 18 | @refresh-alt: "\f04b"; 19 | @umbrella: "\f084"; 20 | @barometer: "\f079"; 21 | @humidity: "\f07a"; 22 | @na: "\f07b"; 23 | @train: "\f0cb"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-variables/variables-time.less: -------------------------------------------------------------------------------- 1 | @time-1: "\f08a"; 2 | @time-2: "\f08b"; 3 | @time-3: "\f08c"; 4 | @time-4: "\f08d"; 5 | @time-5: "\f08e"; 6 | @time-6: "\f08f"; 7 | @time-7: "\f090"; 8 | @time-8: "\f091"; 9 | @time-9: "\f092"; 10 | @time-10: "\f093"; 11 | @time-11: "\f094"; 12 | @time-12: "\f089"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/icon-variables/variables-wind-names.less: -------------------------------------------------------------------------------- 1 | @n: "\f0b1"; 2 | @nne: "\f0b1"; 3 | @ne: "\f0b1"; 4 | @ene: "\f0b1"; 5 | @e: "\f0b1"; 6 | @ese: "\f0b1"; 7 | @se: "\f0b1"; 8 | @sse: "\f0b1"; 9 | @s: "\f0b1"; 10 | @ssw: "\f0b1"; 11 | @sw: "\f0b1"; 12 | @wsw: "\f0b1"; 13 | @w: "\f0b1"; 14 | @wnw: "\f0b1"; 15 | @nw: "\f0b1"; 16 | @nnw: "\f0b1"; 17 | @n: "\f0b1"; 18 | @nne: "\f0b1"; 19 | @ne: "\f0b1"; 20 | @ene: "\f0b1"; 21 | @e: "\f0b1"; 22 | @ese: "\f0b1"; 23 | @se: "\f0b1"; 24 | @sse: "\f0b1"; 25 | @s: "\f0b1"; 26 | @ssw: "\f0b1"; 27 | @sw: "\f0b1"; 28 | @wsw: "\f0b1"; 29 | @w: "\f0b1"; 30 | @wnw: "\f0b1"; 31 | @nw: "\f0b1"; 32 | @nnw: "\f0b1"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/weather-icons-classes.less: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.less"; 2 | @import "icon-classes/classes-night.less"; 3 | @import "icon-classes/classes-neutral.less"; 4 | @import "icon-classes/classes-misc.less"; 5 | @import "icon-classes/classes-moon.less"; 6 | @import "icon-classes/classes-moon-aliases.less"; 7 | @import "icon-classes/classes-time.less"; 8 | @import "icon-classes/classes-direction.less"; 9 | @import "icon-classes/classes-beaufort.less"; 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/weather-icons-variables.less: -------------------------------------------------------------------------------- 1 | @import "icon-variables/variables-beaufort.less"; 2 | @import "icon-variables/variables-time.less"; 3 | @import "icon-variables/variables-moon.less"; 4 | @import "icon-variables/variables-direction.less"; 5 | @import "icon-variables/variables-day.less"; 6 | @import "icon-variables/variables-night.less"; 7 | @import "icon-variables/variables-neutral.less"; 8 | @import "icon-variables/variables-misc.less"; 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/weather-icons-wind.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/less/weather-icons-wind.min.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-classes/classes-beaufort.scss: -------------------------------------------------------------------------------- 1 | .wi-wind-beaufort-0:before {content: $wind-beaufort-0;} 2 | .wi-wind-beaufort-1:before {content: $wind-beaufort-1;} 3 | .wi-wind-beaufort-2:before {content: $wind-beaufort-2;} 4 | .wi-wind-beaufort-3:before {content: $wind-beaufort-3;} 5 | .wi-wind-beaufort-4:before {content: $wind-beaufort-4;} 6 | .wi-wind-beaufort-5:before {content: $wind-beaufort-5;} 7 | .wi-wind-beaufort-6:before {content: $wind-beaufort-6;} 8 | .wi-wind-beaufort-7:before {content: $wind-beaufort-7;} 9 | .wi-wind-beaufort-8:before {content: $wind-beaufort-8;} 10 | .wi-wind-beaufort-9:before {content: $wind-beaufort-9;} 11 | .wi-wind-beaufort-10:before {content: $wind-beaufort-10;} 12 | .wi-wind-beaufort-11:before {content: $wind-beaufort-11;} 13 | .wi-wind-beaufort-12:before {content: $wind-beaufort-12;} -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-classes/classes-direction.scss: -------------------------------------------------------------------------------- 1 | .wi-direction-up:before {content: $direction-up;} 2 | .wi-direction-up-right:before {content: $direction-up-right;} 3 | .wi-direction-right:before {content: $direction-right;} 4 | .wi-direction-down-right:before {content: $direction-down-right;} 5 | .wi-direction-down:before {content: $direction-down;} 6 | .wi-direction-down-left:before {content: $direction-down-left;} 7 | .wi-direction-left:before {content: $direction-left;} 8 | .wi-direction-up-left:before {content: $direction-up-left;} -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-classes/classes-time.scss: -------------------------------------------------------------------------------- 1 | .wi-time-1:before {content: $time-1;} 2 | .wi-time-2:before {content: $time-2;} 3 | .wi-time-3:before {content: $time-3;} 4 | .wi-time-4:before {content: $time-4;} 5 | .wi-time-5:before {content: $time-5;} 6 | .wi-time-6:before {content: $time-6;} 7 | .wi-time-7:before {content: $time-7;} 8 | .wi-time-8:before {content: $time-8;} 9 | .wi-time-9:before {content: $time-9;} 10 | .wi-time-10:before {content: $time-10;} 11 | .wi-time-11:before {content: $time-11;} 12 | .wi-time-12:before {content: $time-12;} -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-classes/classes-wind.scss: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | $wind: "\f0b1"; 4 | 5 | .#{$wi-css-prefix}-wind:before { content: $wind; } 6 | 7 | @mixin wind-rotate( $val: 0deg ) { 8 | -webkit-transform: rotate($val); 9 | -moz-transform: rotate($val); 10 | -ms-transform: rotate($val); 11 | -o-transform: rotate($val); 12 | transform: rotate($val); 13 | } 14 | 15 | @import "classes-wind-degrees.scss"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-variables/variables-beaufort.scss: -------------------------------------------------------------------------------- 1 | $wind-beaufort-0: "\f0b7"; 2 | $wind-beaufort-1: "\f0b8"; 3 | $wind-beaufort-2: "\f0b9"; 4 | $wind-beaufort-3: "\f0ba"; 5 | $wind-beaufort-4: "\f0bb"; 6 | $wind-beaufort-5: "\f0bc"; 7 | $wind-beaufort-6: "\f0bd"; 8 | $wind-beaufort-7: "\f0be"; 9 | $wind-beaufort-8: "\f0bf"; 10 | $wind-beaufort-9: "\f0c0"; 11 | $wind-beaufort-10: "\f0c1"; 12 | $wind-beaufort-11: "\f0c2"; 13 | $wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-variables/variables-day.scss: -------------------------------------------------------------------------------- 1 | $day-sunny: "\f00d"; 2 | $day-cloudy: "\f002"; 3 | $day-cloudy-gusts: "\f000"; 4 | $day-cloudy-windy: "\f001"; 5 | $day-fog: "\f003"; 6 | $day-hail: "\f004"; 7 | $day-haze: "\f0b6"; 8 | $day-lightning: "\f005"; 9 | $day-rain: "\f008"; 10 | $day-rain-mix: "\f006"; 11 | $day-rain-wind: "\f007"; 12 | $day-showers: "\f009"; 13 | $day-sleet: "\f0b2"; 14 | $day-sleet-storm: "\f068"; 15 | $day-snow: "\f00a"; 16 | $day-snow-thunderstorm: "\f06b"; 17 | $day-snow-wind: "\f065"; 18 | $day-sprinkle: "\f00b"; 19 | $day-storm-showers: "\f00e"; 20 | $day-sunny-overcast: "\f00c"; 21 | $day-thunderstorm: "\f010"; 22 | $day-windy: "\f085"; 23 | $solar-eclipse: "\f06e"; 24 | $hot: "\f072"; 25 | $day-cloudy-high: "\f07d"; 26 | $day-light-wind: "\f0c4"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-variables/variables-direction.scss: -------------------------------------------------------------------------------- 1 | $direction-up: "\f058"; 2 | $direction-up-right: "\f057"; 3 | $direction-right: "\f04d"; 4 | $direction-down-right: "\f088"; 5 | $direction-down: "\f044"; 6 | $direction-down-left: "\f043"; 7 | $direction-left: "\f048"; 8 | $direction-up-left: "\f087"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-variables/variables-misc.scss: -------------------------------------------------------------------------------- 1 | $alien: "\f075"; 2 | $celsius: "\f03c"; 3 | $fahrenheit: "\f045"; 4 | $degrees: "\f042"; 5 | $thermometer: "\f055"; 6 | $thermometer-exterior: "\f053"; 7 | $thermometer-internal: "\f054"; 8 | $cloud-down: "\f03d"; 9 | $cloud-up: "\f040"; 10 | $cloud-refresh: "\f03e"; 11 | $horizon: "\f047"; 12 | $horizon-alt: "\f046"; 13 | $sunrise: "\f051"; 14 | $sunset: "\f052"; 15 | $moonrise: "\f0c9"; 16 | $moonset: "\f0ca"; 17 | $refresh: "\f04c"; 18 | $refresh-alt: "\f04b"; 19 | $umbrella: "\f084"; 20 | $barometer: "\f079"; 21 | $humidity: "\f07a"; 22 | $na: "\f07b"; 23 | $train: "\f0cb"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-variables/variables-time.scss: -------------------------------------------------------------------------------- 1 | $time-1: "\f08a"; 2 | $time-2: "\f08b"; 3 | $time-3: "\f08c"; 4 | $time-4: "\f08d"; 5 | $time-5: "\f08e"; 6 | $time-6: "\f08f"; 7 | $time-7: "\f090"; 8 | $time-8: "\f091"; 9 | $time-9: "\f092"; 10 | $time-10: "\f093"; 11 | $time-11: "\f094"; 12 | $time-12: "\f089"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/icon-variables/variables-wind-names.scss: -------------------------------------------------------------------------------- 1 | $n: "\f0b1"; 2 | $nne: "\f0b1"; 3 | $ne: "\f0b1"; 4 | $ene: "\f0b1"; 5 | $e: "\f0b1"; 6 | $ese: "\f0b1"; 7 | $se: "\f0b1"; 8 | $sse: "\f0b1"; 9 | $s: "\f0b1"; 10 | $ssw: "\f0b1"; 11 | $sw: "\f0b1"; 12 | $wsw: "\f0b1"; 13 | $w: "\f0b1"; 14 | $wnw: "\f0b1"; 15 | $nw: "\f0b1"; 16 | $nnw: "\f0b1"; 17 | $n: "\f0b1"; 18 | $nne: "\f0b1"; 19 | $ne: "\f0b1"; 20 | $ene: "\f0b1"; 21 | $e: "\f0b1"; 22 | $ese: "\f0b1"; 23 | $se: "\f0b1"; 24 | $sse: "\f0b1"; 25 | $s: "\f0b1"; 26 | $ssw: "\f0b1"; 27 | $sw: "\f0b1"; 28 | $wsw: "\f0b1"; 29 | $w: "\f0b1"; 30 | $wnw: "\f0b1"; 31 | $nw: "\f0b1"; 32 | $nnw: "\f0b1"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/weather-icons-classes.scss: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.scss"; 2 | @import "icon-classes/classes-night.scss"; 3 | @import "icon-classes/classes-neutral.scss"; 4 | @import "icon-classes/classes-misc.scss"; 5 | @import "icon-classes/classes-moon.scss"; 6 | @import "icon-classes/classes-moon-aliases.scss"; 7 | @import "icon-classes/classes-time.scss"; 8 | @import "icon-classes/classes-direction.scss"; 9 | @import "icon-classes/classes-beaufort.scss"; 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/weather-icons-variables.scss: -------------------------------------------------------------------------------- 1 | @import 'icon-variables/variables-beaufort.scss'; 2 | @import 'icon-variables/variables-time.scss'; 3 | @import 'icon-variables/variables-moon.scss'; 4 | @import 'icon-variables/variables-direction.scss'; 5 | @import 'icon-variables/variables-day.scss'; 6 | @import 'icon-variables/variables-night.scss'; 7 | @import 'icon-variables/variables-neutral.scss'; 8 | @import 'icon-variables/variables-misc.scss'; 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/weather-icons-wind.min.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /src/main/resources/static/dashboard/html/scss/icons/weather-icons/sass/weather-icons-wind.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /src/main/resources/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khandelwal-arpit/springboot-starterkit/ee96868ee5a07c2fb9f9d6d55ceadccc67116d31/src/main/resources/static/favicon.png -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/test/java/com/starterkit/springboot/brs/BusReservationSystemApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.starterkit.springboot.brs; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class BusReservationSystemApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | --------------------------------------------------------------------------------