~ubuntu-branches/ubuntu/precise/topal/precise

« back to all changes in this revision

Viewing changes to invocation.ads

  • Committer: Bazaar Package Importer
  • Author(s): Phil Brooke
  • Date: 2011-07-04 12:25:03 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20110704122503-sxyon0imhkllayz2
Tags: 74-1
* New upstream release.
* Bump standards-version to 3.9.2.
* Upstream documentation changes:
   * No longer need weblint.
   * Uses some texlive packages instead.
   * Remove LaTeX aux files in clean target.
   * Updated debian/docs.
   * Rename and convert Changelog.html to text.
* Added build-arch and build-indep targets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-- Topal: GPG/GnuPG and Alpine/Pine integration
 
2
-- Copyright (C) 2001--2011  Phillip J. Brooke
2
3
--
3
4
-- This program is free software: you can redistribute it and/or modify
4
5
-- it under the terms of the GNU General Public License version 3 as
20
20
   type Run_Modes is (Help_Text,
21
21
                      Inline_Display, Mime_Display, Old_Mime_Display,
22
22
                      Pipe_Display,
23
 
                      Inline_Send, Mime_Send, Nonpine_Send,
 
23
                      Inline_Send, Mime_Send, Actual_Send, Nonpine_Send,
24
24
                      Clear_Temp, Clear_Cache, Clear_All,
25
25
                      Dump_Default_Config, Dump_Current_Config,
26
26
                      Interactive_Config,
27
27
                      Fix_Email, Fix_Folders,
 
28
                      Check_Send_Token,
28
29
                      Server, Remote_Send, Remote_Mime_Send,
29
30
                      Remote_Decrypt, Remote_Mime_Decrypt
30
31
                      );
39
40
   Mimefile      : UBS;
40
41
   Recipients    : UBS_Array_Pointer;
41
42
   Folders       : UBS_Array_Pointer;
 
43
   CST_Token     : UBS;
 
44
   Remaining     : UBS_Array_Pointer;
42
45
 
43
46
   procedure Parse_Command_Line;
44
47