~ubuntu-branches/ubuntu/trusty/keepass2/trusty-proposed

« back to all changes in this revision

Viewing changes to KeePass/Util/NetUtil.cs

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2011-12-30 15:45:59 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20111230154559-3en1b9v90hswvs1w
Tags: 2.18+dfsg-1
* New upstream release
  - refresh patches
  - drop upstream applied patches:
    explicitly-PUT-for-webdav-writes.patch
    prefer-4.0-framework-if-available.patch
* add patch to improve autotype when dealing with multiple keyboard layouts
  - Thanks to amiryal for the patch
* disable initial autoupdate popup via patch
* update years in debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
  KeePass Password Safe - The Open-Source Password Manager
3
 
  Copyright (C) 2003-2011 Dominik Reichl <dominik.reichl@t-online.de>
 
3
  Copyright (C) 2003-2012 Dominik Reichl <dominik.reichl@t-online.de>
4
4
 
5
5
  This program is free software; you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
30
30
{
31
31
        public static class NetUtil
32
32
        {
33
 
                public static string GZipUtf8ResultToString(DownloadDataCompletedEventArgs e)
 
33
                /* public static string GZipUtf8ResultToString(DownloadDataCompletedEventArgs e)
34
34
                {
35
35
                        if(e.Cancelled || (e.Error != null) || (e.Result == null))
36
36
                                return null;
57
57
                        msZipped.Close();
58
58
 
59
59
                        return StrUtil.Utf8.GetString(msUTF8.ToArray());
60
 
                }
 
60
                } */
61
61
 
62
62
                public static string WebPageLogin(Uri url, string strPostData,
63
63
                        out List<KeyValuePair<string, string>> vCookies)