{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "See also, http://dotnetzip.codeplex.com/discussions/268506\n \nGZIP requires iso-8859-1 for encoding filenames and comments. \n \nI did some research and learned that iso-8859-1 encodes only in the range from 0 to 255, and the characters in iso-8859-1 are the same as the Unicode characters in that range. Therefore encoding and decoding is trivial.  \n \nThe encoder is basically this:\n \n      for (int i=0; i < count; i++)\n      {\n          char c = chars[start+i]; // get the unicode char\n          if (c >= '\\x00FF') // out of range?\n              bytes[byteIndex+i] = (byte) '?';\n          else\n              bytes[byteIndex+i] = (byte) c;\n      }\n \n \nPlease add this into the library to allow GZip to be used from Silverlight. \nAlso add it to Compact Framework builds.",
    "LastUpdatedDate": "2013-02-21T18:43:06.47-08:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Low",
      "Severity": 50,
      "Id": 1
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2011-08-08T15:24:52.373-07:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "GZipStream in Silverlight requires iso-8859-1",
    "Type": {
      "Name": "Issue",
      "Id": 3
    },
    "VoteCount": 3,
    "Id": 14045
  },
  "FileAttachments": [
    {
      "FileId": 4031,
      "FileName": "wi14045-CF.zip",
      "DownloadUrl": ".\\4031"
    },
    {
      "FileId": 4032,
      "FileName": "wi14045-SL.zip",
      "DownloadUrl": ".\\4032"
    }
  ],
  "Comments": [
    {
      "Message": "thanks! that's really exemplary work.",
      "PostedDate": "2011-08-09T06:39:55.66-07:00",
      "Id": -2147483648
    },
    {
      "Message": "",
      "PostedDate": "2011-08-09T07:08:22.813-07:00",
      "Id": -2147483648
    },
    {
      "Message": "",
      "PostedDate": "2011-08-10T22:07:19.643-07:00",
      "Id": -2147483648
    },
    {
      "Message": "Here's the interim build for CF. I'll be interested to hear your feedback - let me know if it works for you. ",
      "PostedDate": "2011-08-10T22:07:31.333-07:00",
      "Id": -2147483648
    },
    {
      "Message": "",
      "PostedDate": "2011-08-10T22:09:23.86-07:00",
      "Id": -2147483648
    },
    {
      "Message": "And here's the interim build for Silverlight .  Would like feedback on this too.",
      "PostedDate": "2011-08-10T22:09:25.933-07:00",
      "Id": -2147483648
    },
    {
      "Message": "",
      "PostedDate": "2011-08-10T22:11:26.277-07:00",
      "Id": -2147483648
    },
    {
      "Message": "Thanks for the build Cheeso. I tried it today and it worked fine for uncompressing gzip streams of text. The real test here would be to uncompress something with comments or filenames which your Zlib_GZipStream_FileName_And_Comments() test case seems to do. Maybe investigate there a bit since I don't see that they are checked once decompressed.\r\n\r\nI am hoping you will release this fix soon as it enables use of your library and I would prefer it over using my modified version.",
      "PostedDate": "2011-08-11T11:20:18.133-07:00",
      "Id": -2147483648
    },
    {
      "Message": "",
      "PostedDate": "2011-11-28T17:44:02.657-08:00",
      "Id": -2147483648
    },
    {
      "Message": "Any chance you can update the main source and assembly releases with this Silverlight fix? The Silverlight version currently available for download builds, but doesn't run in Silverlight as you have reported (due to ISO-8559-1 not being supported in Silverlight). Other people have downloaded the main Silverlight version and I've had to tell them that it doesn't work. This interim build is not easy to find on the site (it takes an external Google). It would be great to get the fix into the main branch.",
      "PostedDate": "2012-10-08T02:59:22.903-07:00",
      "Id": -2147483648
    },
    {
      "Message": "",
      "PostedDate": "2013-02-21T18:43:06.47-08:00",
      "Id": -2147483648
    }
  ]
}