~ubuntu-branches/debian/sid/wordpress/sid

« back to all changes in this revision

Viewing changes to debian/missing-sources/plupload-1.5.4/csharp/Plupload/PngEncoder/DeflaterPending.cs

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2013-09-04 23:18:58 UTC
  • mfrom: (1.2.28)
  • Revision ID: package-import@ubuntu.com-20130904231858-nljmn1buzswh63jk
Tags: 3.6+dfsg-1
* New upstream release.
* Improve wp-settings to verify that $_SERVER['HTTP_X_FORWARDED_PROTO']
  exists before accessing it (avoids a PHP notice).
  Thanks to Paul Dreik <slask@pauldreik.se> for the report and the patch.
* Document in README.Debian the need to login to /wp-admin/ to complete
  an upgrade.
* Drop useless debian/README.source
* Drop 008CVE2008-2392.patch since upstream now disables unfiltered
  uploads by default. See http://core.trac.wordpress.org/ticket/10692
* Drop 009CVE2008-6767.patch since the backto parameter is validated
  against a whitelist, and externally triggered upgrades are not a
  security problem as long as they work.
* Update debian/missing-sources with latest versions.
* Update upstream l10n.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// DeflaterPending.cs
2
 
//
3
 
// Copyright (C) 2001 Mike Krueger
4
 
// Copyright (C) 2004 John Reilly
5
 
//
6
 
// This file was translated from java, it was part of the GNU Classpath
7
 
// Copyright (C) 2001 Free Software Foundation, Inc.
8
 
//
9
 
// This program is free software; you can redistribute it and/or
10
 
// modify it under the terms of the GNU General Public License
11
 
// as published by the Free Software Foundation; either version 2
12
 
// of the License, or (at your option) any later version.
13
 
//
14
 
// This program is distributed in the hope that it will be useful,
15
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
// GNU General Public License for more details.
18
 
//
19
 
// You should have received a copy of the GNU General Public License
20
 
// along with this program; if not, write to the Free Software
21
 
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
 
//
23
 
// Linking this library statically or dynamically with other modules is
24
 
// making a combined work based on this library.  Thus, the terms and
25
 
// conditions of the GNU General Public License cover the whole
26
 
// combination.
27
 
// 
28
 
// As a special exception, the copyright holders of this library give you
29
 
// permission to link this library with independent modules to produce an
30
 
// executable, regardless of the license terms of these independent
31
 
// modules, and to copy and distribute the resulting executable under
32
 
// terms of your choice, provided that you also meet, for each linked
33
 
// independent module, the terms and conditions of the license of that
34
 
// module.  An independent module is a module which is not derived from
35
 
// or based on this library.  If you modify this library, you may extend
36
 
// this exception to your version of the library, but you are not
37
 
// obligated to do so.  If you do not wish to do so, delete this
38
 
// exception statement from your version.
39
 
 
40
 
namespace Plupload.PngEncoder {
41
 
 
42
 
        /// <summary>
43
 
        /// This class stores the pending output of the Deflater.
44
 
        /// 
45
 
        /// author of the original java version : Jochen Hoenicke
46
 
        /// </summary>
47
 
        public class DeflaterPending : PendingBuffer {
48
 
                /// <summary>
49
 
                /// Construct instance with default buffer size
50
 
                /// </summary>
51
 
                public DeflaterPending()
52
 
                        : base(DeflaterConstants.PENDING_BUF_SIZE) {
53
 
                }
54
 
        }
55
 
}