![JAR search and dependency download from the Maven repository](/logo.png)
org.scalatra.UriDecoder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra_2.10 Show documentation
Show all versions of scalatra_2.10 Show documentation
The core Scalatra framework
The newest version!
package org.scalatra
import rl.UrlCodingUtils
object UriDecoder {
def firstStep(uri: String): String = {
UrlCodingUtils.urlDecode(
toDecode = UrlCodingUtils.ensureUrlEncoding(uri),
toSkip = PathPatternParser.PathReservedCharacters)
}
def secondStep(uri: String): String = {
uri.replaceAll("%23", "#")
.replaceAll("%2F", "/")
.replaceAll("%3F", "?")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy