Changeset 34207

Show
Ignore:
Timestamp:
07/01/09 10:56:17 (4 years ago)
Author:
syo68k
Message:

エンコード済みSHIFT-JIS文字列がURLに含まれる場合に正しく処理できないことがあったのを修正

Location:
lang/vb2005/Tween/trunk/Tween
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/vb2005/Tween/trunk/Tween/MyCommon.vb

    r33441 r34207  
    2626Imports System.Security.Principal 
    2727Imports System.Reflection 
     28Imports System.Web 
    2829 
    2930Public Module MyCommon 
     
    281282    ''' <returns>マルチバイト文字の部分をUTF-8/%xx形式でエンコードした文字列を返します。</returns> 
    282283 
    283     Public Function urlEncodeMultibyteChar(ByVal input As String) As String 
     284    Public Function urlEncodeMultibyteChar(ByVal _input As String) As String 
    284285        Dim uri As Uri = Nothing 
    285286        Dim sb As StringBuilder = New StringBuilder(256) 
    286287        Dim result As String = "" 
     288        Dim input As String = HttpUtility.UrlDecode(_input) 
    287289retry: 
    288290        For Each c As Char In input 
  • lang/vb2005/Tween/trunk/Tween/Resources/ChangeLog.txt

    r34201 r34207  
    1313-Webモード時は、ステータス欄のAPI残数を表示しないよう変更 
    1414-詳細表示のユーザー名が欠ける事があったのを修正 
     15-エンコード済みSHIFT-JIS文字列がURLに含まれる場合に正しく処理できないことがあったのを修正 
    1516***Ver 0.5.0.0(2009/6/15) 
    1617-発言詳細の選択文字列クリップボードコピーの不具合修正