コード例 #1
0
ファイル: HTTPContent.py プロジェクト: akkmzack/RIOS-8.5
	def urlDecode(self, s):
		"""Alias for `WebUtils.Funcs.urlDecode`.

		Turns special % characters into actual characters.

		"""
		return Funcs.urlDecode(s)
コード例 #2
0
ファイル: HTTPContent.py プロジェクト: akkmzack/RIOS-8.5
    def urlDecode(s):
        """Turn special % characters into actual characters.

        This method does the same as the `urllib.unquote_plus()` function.

        """
        return Funcs.urlDecode(s)
コード例 #3
0
ファイル: HTTPContent.py プロジェクト: techeye220/w4py
    def urlDecode(s):
        """Turn special % characters into actual characters.

        This method does the same as the `urllib.unquote_plus()` function.
        """
        return Funcs.urlDecode(s)
コード例 #4
0
ファイル: TestFuncs.py プロジェクト: Cito/w4py
 def testUrlRoundTrip(self):
     t = '<test>\n\t"50% = 50,50?"\n</test>'
     self.assertEqual(Funcs.urlDecode(Funcs.urlEncode(t)), t)
コード例 #5
0
ファイル: NewPage.py プロジェクト: ankitadhandha/wedgechanges
 def urlDecode(self, s):
     return Funcs.urlDecode(s)
コード例 #6
0
ファイル: TestFuncs.py プロジェクト: WebwareForPython/w4py3
 def testUrlRoundTrip(self):
     t = '<test>\n\t"50% = 50,50?"\n</test>'
     self.assertEqual(Funcs.urlDecode(Funcs.urlEncode(t)), t)