├── .gitignore ├── LICENSE ├── README.md ├── app.json ├── app ├── Global.scala ├── controllers │ └── HomeController.scala ├── datastore │ └── UriDataStore.scala ├── engines │ └── UriEngine.scala ├── models │ ├── HostDetails.scala │ ├── HostType.scala │ ├── MetricsSummary.scala │ └── RemoveParamRes.scala └── views │ └── index.scala.html ├── conf ├── application.conf └── routes ├── project ├── build.properties └── plugins.sbt ├── public ├── images │ ├── favicon.png │ └── lang-logo.png ├── javascripts │ └── index.js └── stylesheets │ └── index.css └── system.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app.json -------------------------------------------------------------------------------- /app/Global.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/Global.scala -------------------------------------------------------------------------------- /app/controllers/HomeController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/controllers/HomeController.scala -------------------------------------------------------------------------------- /app/datastore/UriDataStore.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/datastore/UriDataStore.scala -------------------------------------------------------------------------------- /app/engines/UriEngine.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/engines/UriEngine.scala -------------------------------------------------------------------------------- /app/models/HostDetails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/models/HostDetails.scala -------------------------------------------------------------------------------- /app/models/HostType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/models/HostType.scala -------------------------------------------------------------------------------- /app/models/MetricsSummary.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/models/MetricsSummary.scala -------------------------------------------------------------------------------- /app/models/RemoveParamRes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/models/RemoveParamRes.scala -------------------------------------------------------------------------------- /app/views/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/app/views/index.scala.html -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/conf/routes -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/project/build.properties -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/public/images/lang-logo.png -------------------------------------------------------------------------------- /public/javascripts/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishijash/DontRefMe/HEAD/public/stylesheets/index.css -------------------------------------------------------------------------------- /system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=1.8 2 | --------------------------------------------------------------------------------