~ubuntu-branches/ubuntu/trusty/enigmail/trusty-updates

« back to all changes in this revision

Viewing changes to extensions/enigmail/ipc/public/nsIPipeFilterListener.idl

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2011-06-07 14:35:53 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: package-import@ubuntu.com-20110607143553-fbgqhhvh8g8h6j1y
Tags: 2:1.2~a2~cvs20110606t2200-0ubuntu1
* Update to latest trunk snapshot for Thunderbird beta compat

* Remove build/pgo/profileserver.py from debian/clean. The new build
  system has a target depending on this
  - update debian/clean
* Drop debian/patches/autoconf.diff, just generate this at build time
* Refresh debian/patches/build_system_dont_link_libxul.diff
* libipc seems to be renamed to libipc-pipe. Fix genxpi and chrome.manifest
  to fix this 
  - add debian/patches/ipc-pipe_rename.diff
  - update debian/patches/series
* The makefiles in extensions/enigmail/ipc have an incorrect DEPTH
  attribute. Fix this so that they can find the rest of the build system
  - add debian/patches/makefile_depth.diff
  - update debian/patches/series
* Drop debian/patches/makefile-in-empty-xpcom-fix.diff - fixed in the
  current version
* Don't register a class ID multiple times, as this breaks enigmail entirely
  - add debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Look for the Thunderbird 5 SDK
  - update debian/rules
  - update debian/control
* Run autoconf2.13 at build time
  - update debian/rules
  - update debian/control
* Add useless mesa-common-dev build-dep, just to satisfy the build system.
  We should just patch this out entirely really, but that's for another upload
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * The contents of this file are subject to the Mozilla Public
3
 
 * License Version 1.1 (the "MPL"); you may not use this file
4
 
 * except in compliance with the MPL. You may obtain a copy of
5
 
 * the MPL at http://www.mozilla.org/MPL/
6
 
 *
7
 
 * Software distributed under the MPL is distributed on an "AS
8
 
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
 
 * implied. See the MPL for the specific language governing
10
 
 * rights and limitations under the MPL.
11
 
 *
12
 
 * The Original Code is protoZilla.
13
 
 *
14
 
 * The Initial Developer of the Original Code is Ramalingam Saravanan.
15
 
 * Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
16
 
 * Copyright (C) 2000 Ramalingam Saravanan. All Rights Reserved.
17
 
 *
18
 
 * Contributor(s):
19
 
 *
20
 
 * Alternatively, the contents of this file may be used under the
21
 
 * terms of the GNU General Public License (the "GPL"), in which case
22
 
 * the provisions of the GPL are applicable instead of
23
 
 * those above. If you wish to allow use of your version of this
24
 
 * file only under the terms of the GPL and not to allow
25
 
 * others to use your version of this file under the MPL, indicate
26
 
 * your decision by deleting the provisions above and replace them
27
 
 * with the notice and other provisions required by the GPL.
28
 
 * If you do not delete the provisions above, a recipient
29
 
 * may use your version of this file under either the MPL or the
30
 
 * GPL.
31
 
 */
32
 
 
33
 
#include "nsIStreamListener.idl"
34
 
 
35
 
%{C++
36
 
#define NS_PIPEFILTERLISTENER_CLASSNAME "Pipe Filter Listener"
37
 
#define NS_PIPEFILTERLISTENER_CONTRACTID "@mozilla.org/process/pipe-filter-listener;1"
38
 
 
39
 
#define NS_PIPEFILTERLISTENER_CID                       \
40
 
{ /* 8431e1b1-7ab1-11d4-8f02-006008948af5 */     \
41
 
   0x8431e1b1, 0x7ab1, 0x11d4,                   \
42
 
{0x8f, 0x02, 0x00, 0x60, 0x08, 0x94, 0x8a, 0xf5} }
43
 
 
44
 
%}
45
 
 
46
 
/* nsIPipeFilterListener is a filter for nsIStreamListener
47
 
 */
48
 
 
49
 
[scriptable, uuid(8431e1b0-7ab1-11d4-8f02-006008948af5)]
50
 
interface nsIPipeFilterListener : nsIStreamListener
51
 
{
52
 
  readonly attribute ACString startDelimiter;
53
 
 
54
 
  readonly attribute ACString endDelimiter;
55
 
 
56
 
  /**
57
 
   * contains the matched start delimiter up to the end of the line,
58
 
   * including the trailing linebreak (but not the preceding linebreak)
59
 
   */
60
 
  readonly attribute ACString startLine;
61
 
 
62
 
  /**
63
 
   * contains the matched end delimiter up to the end of the line,
64
 
   * including the preceding and trailing linebreaks
65
 
   */
66
 
  readonly attribute ACString endLine;
67
 
 
68
 
  /**
69
 
   * Initializes filtering stream
70
 
   */
71
 
 
72
 
  void init(in nsIStreamListener listener, in nsISupports ctxt,
73
 
            in string startDelimiter, in string endDelimiter,
74
 
            in unsigned long skipCount,
75
 
            in boolean keepDelimiters, in boolean mimeMultipart,
76
 
            in nsIStreamListener tailListener);
77
 
 
78
 
 
79
 
  void write(in string buf, in unsigned long count,
80
 
             in nsIRequest request, in nsISupports ctxt);
81
 
};
82
 
 
83
 
 
84
 
///////////////////////////////////////////////////////////////////////////////