Changeset 1234

Show
Ignore:
Timestamp:
1/17/2010 8:41:57 AM (2 months ago)
Author:
vessper
Message:

17/01/2010 (1.14.0.1234)


- V2: Updated with fixes 1232-1233

Location:
branches/EveHQv2
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/EveHQv2

    • Property svn:mergeinfo
      •  

        old new  
        11/branches/PrismPhaseII:589-675 
        2 /trunk:1195-1210,1216-1230 
         2/trunk:1195-1210,1216-1230,1232-1233 
  • branches/EveHQv2/EveHQ.Core/DataFunctions.vb

    r1214 r1234  
    15461546        strID.Append("0") 
    15471547        ' Send this to the API 
    1548         Dim IDXML As XmlDocument = EveHQ.Core.EveAPI.GetAPIXML(EveHQ.Core.EveAPI.APIRequest.IDToName, strID.ToString, EveHQ.Core.EveAPI.APIReturnMethod.ReturnStandard) 
     1548        Dim IDXML As XmlDocument = EveHQ.Core.EveAPI.GetAPIXML(EveHQ.Core.EveAPI.APIRequest.IDToName, strID.ToString, EveHQ.Core.EveAPI.APIReturnMethod.ReturnActual) 
    15491549        ' Parse this XML 
    15501550        Dim FinalIDs As New SortedList(Of Long, String) 
  • branches/EveHQv2/EveHQ.Core/EveAPI.vb

    r1231 r1234  
    107107        End Select 
    108108        ' Determine filename of cache 
    109         Dim fileName As String = "EVEHQAPI_" & [Enum].GetName(GetType(EveHQ.Core.EveAPI.APIRequest), Feature) 
     109        Dim fileName As String = "EVEHQAPI_" & [Enum].GetName(GetType(EveHQ.Core.EveAPI.APIRequest), Feature) & "_" & Format(Now, "yyyyMMddhhmmssfffff") 
    110110        Return EveHQ.Core.EveAPI.GetXML(remoteURL, postdata, fileName, ReturnMethod, Feature) 
    111111    End Function