tnef 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. data/ext/tnef/AUTHORS +7 -0
  2. data/ext/tnef/BUGS.in +5 -0
  3. data/ext/tnef/COPYING +340 -0
  4. data/ext/tnef/ChangeLog +1550 -0
  5. data/ext/tnef/INSTALL +234 -0
  6. data/ext/tnef/Makefile.am +7 -0
  7. data/ext/tnef/Makefile.in +699 -0
  8. data/ext/tnef/NEWS +177 -0
  9. data/ext/tnef/README +39 -0
  10. data/ext/tnef/THANKS +1 -0
  11. data/ext/tnef/TODO +7 -0
  12. data/ext/tnef/acinclude.m4 +47 -0
  13. data/ext/tnef/aclocal.m4 +1012 -0
  14. data/ext/tnef/configure +6815 -0
  15. data/ext/tnef/configure.in +67 -0
  16. data/ext/tnef/depcomp +584 -0
  17. data/ext/tnef/doc/FAQ +25 -0
  18. data/ext/tnef/doc/Makefile.am +6 -0
  19. data/ext/tnef/doc/Makefile.in +623 -0
  20. data/ext/tnef/doc/file-format.tex +139 -0
  21. data/ext/tnef/doc/tnef.1.in +183 -0
  22. data/ext/tnef/doc/www/Makefile.am +14 -0
  23. data/ext/tnef/doc/www/Makefile.in +542 -0
  24. data/ext/tnef/doc/www/cgi-bin/Makefile.am +14 -0
  25. data/ext/tnef/doc/www/cgi-bin/Makefile.in +340 -0
  26. data/ext/tnef/doc/www/htdocs/Makefile.am +14 -0
  27. data/ext/tnef/doc/www/htdocs/Makefile.in +340 -0
  28. data/ext/tnef/extconf.rb +3 -0
  29. data/ext/tnef/install-sh +507 -0
  30. data/ext/tnef/missing +367 -0
  31. data/ext/tnef/mkinstalldirs +161 -0
  32. data/ext/tnef/src/Makefile.am +48 -0
  33. data/ext/tnef/src/Makefile.in +700 -0
  34. data/ext/tnef/src/alloc.c +107 -0
  35. data/ext/tnef/src/alloc.h +54 -0
  36. data/ext/tnef/src/attr.c +270 -0
  37. data/ext/tnef/src/attr.h +74 -0
  38. data/ext/tnef/src/common.h +101 -0
  39. data/ext/tnef/src/config.h.in +111 -0
  40. data/ext/tnef/src/date.c +66 -0
  41. data/ext/tnef/src/date.h +43 -0
  42. data/ext/tnef/src/debug.c +45 -0
  43. data/ext/tnef/src/debug.h +32 -0
  44. data/ext/tnef/src/file.c +259 -0
  45. data/ext/tnef/src/file.h +48 -0
  46. data/ext/tnef/src/main.c +386 -0
  47. data/ext/tnef/src/mapi-names.data +430 -0
  48. data/ext/tnef/src/mapi-types.data +19 -0
  49. data/ext/tnef/src/mapi_attr.c +419 -0
  50. data/ext/tnef/src/mapi_attr.h +78 -0
  51. data/ext/tnef/src/mkdata.awk +100 -0
  52. data/ext/tnef/src/options.c +32 -0
  53. data/ext/tnef/src/options.h +67 -0
  54. data/ext/tnef/src/path.c +397 -0
  55. data/ext/tnef/src/path.h +34 -0
  56. data/ext/tnef/src/replace/Makefile.am +8 -0
  57. data/ext/tnef/src/replace/Makefile.in +435 -0
  58. data/ext/tnef/src/replace/basename.c +45 -0
  59. data/ext/tnef/src/replace/dummy.c +7 -0
  60. data/ext/tnef/src/replace/getopt_long.c +940 -0
  61. data/ext/tnef/src/replace/getopt_long.h +141 -0
  62. data/ext/tnef/src/replace/malloc.c +41 -0
  63. data/ext/tnef/src/replace/strdup.c +51 -0
  64. data/ext/tnef/src/rtf.c +362 -0
  65. data/ext/tnef/src/rtf.h +36 -0
  66. data/ext/tnef/src/tnef-names.data +34 -0
  67. data/ext/tnef/src/tnef-types.data +12 -0
  68. data/ext/tnef/src/tnef.c +396 -0
  69. data/ext/tnef/src/tnef.h +45 -0
  70. data/ext/tnef/src/util.c +112 -0
  71. data/ext/tnef/src/util.h +42 -0
  72. data/ext/tnef/src/write.c +136 -0
  73. data/ext/tnef/src/write.h +25 -0
  74. data/ext/tnef/src/xstrdup.c +41 -0
  75. data/ext/tnef/tests/Makefile.am +4 -0
  76. data/ext/tnef/tests/Makefile.in +530 -0
  77. data/ext/tnef/tests/cmdline/AUTHORS +8 -0
  78. data/ext/tnef/tests/cmdline/AUTHORS.baseline +8 -0
  79. data/ext/tnef/tests/cmdline/Makefile.am +33 -0
  80. data/ext/tnef/tests/cmdline/Makefile.in +455 -0
  81. data/ext/tnef/tests/cmdline/basic.baseline +4 -0
  82. data/ext/tnef/tests/cmdline/basic.test +39 -0
  83. data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -0
  84. data/ext/tnef/tests/cmdline/body.baseline +929 -0
  85. data/ext/tnef/tests/cmdline/body.test +55 -0
  86. data/ext/tnef/tests/cmdline/debug.baseline +155 -0
  87. data/ext/tnef/tests/cmdline/debug.test +14 -0
  88. data/ext/tnef/tests/cmdline/directory.baseline +3 -0
  89. data/ext/tnef/tests/cmdline/directory.test +35 -0
  90. data/ext/tnef/tests/cmdline/help.baseline +63 -0
  91. data/ext/tnef/tests/cmdline/help.test +12 -0
  92. data/ext/tnef/tests/cmdline/interactive.test +5 -0
  93. data/ext/tnef/tests/cmdline/list.baseline +5 -0
  94. data/ext/tnef/tests/cmdline/list.test +21 -0
  95. data/ext/tnef/tests/cmdline/maxsize.baseline +828 -0
  96. data/ext/tnef/tests/cmdline/maxsize.test +43 -0
  97. data/ext/tnef/tests/cmdline/message.html.baseline +95 -0
  98. data/ext/tnef/tests/cmdline/mime-types.baseline +3 -0
  99. data/ext/tnef/tests/cmdline/mime-types.test +11 -0
  100. data/ext/tnef/tests/cmdline/overwrite.baseline +8 -0
  101. data/ext/tnef/tests/cmdline/overwrite.test +40 -0
  102. data/ext/tnef/tests/cmdline/rtf-test.rtf.baseline +0 -0
  103. data/ext/tnef/tests/cmdline/stdin.baseline +2 -0
  104. data/ext/tnef/tests/cmdline/stdin.test +18 -0
  105. data/ext/tnef/tests/cmdline/test.tnef +0 -0
  106. data/ext/tnef/tests/cmdline/triples-test-2.rtf.baseline +0 -0
  107. data/ext/tnef/tests/cmdline/triples-test-2.txt.baseline +0 -0
  108. data/ext/tnef/tests/cmdline/triples-test.txt.baseline +0 -0
  109. data/ext/tnef/tests/cmdline/use-path.baseline +0 -0
  110. data/ext/tnef/tests/cmdline/use-path.test +5 -0
  111. data/ext/tnef/tests/cmdline/verbose.baseline +5 -0
  112. data/ext/tnef/tests/cmdline/verbose.test +19 -0
  113. data/ext/tnef/tests/cmdline/version.baseline +17 -0
  114. data/ext/tnef/tests/cmdline/version.test +14 -0
  115. data/ext/tnef/tests/files/MAPI_ATTACH_DATA_OBJ.test +9 -0
  116. data/ext/tnef/tests/files/MAPI_OBJECT.test +9 -0
  117. data/ext/tnef/tests/files/Makefile.am +16 -0
  118. data/ext/tnef/tests/files/Makefile.in +636 -0
  119. data/ext/tnef/tests/files/baselines/AUTHORS.baseline +8 -0
  120. data/ext/tnef/tests/files/baselines/AUTOEXEC.BAT.baseline +0 -0
  121. data/ext/tnef/tests/files/baselines/CONFIG.SYS.baseline +0 -0
  122. data/ext/tnef/tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline +0 -0
  123. data/ext/tnef/tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline +229 -0
  124. data/ext/tnef/tests/files/baselines/MAPI_OBJECT-body.rtf.baseline +0 -0
  125. data/ext/tnef/tests/files/baselines/MAPI_OBJECT.baseline +153 -0
  126. data/ext/tnef/tests/files/baselines/Makefile.am +35 -0
  127. data/ext/tnef/tests/files/baselines/Makefile.in +361 -0
  128. data/ext/tnef/tests/files/baselines/README.baseline +31 -0
  129. data/ext/tnef/tests/files/baselines/TechlibDEC99-JAN00.doc.baseline +0 -0
  130. data/ext/tnef/tests/files/baselines/TechlibDEC99.doc.baseline +0 -0
  131. data/ext/tnef/tests/files/baselines/TechlibNOV99.doc.baseline +0 -0
  132. data/ext/tnef/tests/files/baselines/Untitled_Attachment.baseline +0 -0
  133. data/ext/tnef/tests/files/baselines/VIA_Nytt_1402.doc.baseline +0 -0
  134. data/ext/tnef/tests/files/baselines/VIA_Nytt_1402.pdf.baseline +0 -0
  135. data/ext/tnef/tests/files/baselines/VIA_Nytt_14021.htm.baseline +1914 -0
  136. data/ext/tnef/tests/files/baselines/body-body.html.baseline +95 -0
  137. data/ext/tnef/tests/files/baselines/body.baseline +124 -0
  138. data/ext/tnef/tests/files/baselines/boot.ini.baseline +6 -0
  139. data/ext/tnef/tests/files/baselines/data-before-name-body.rtf.baseline +0 -0
  140. data/ext/tnef/tests/files/baselines/data-before-name.baseline +213 -0
  141. data/ext/tnef/tests/files/baselines/garbage-at-end.baseline +73 -0
  142. data/ext/tnef/tests/files/baselines/generpts.src.baseline +1691 -0
  143. data/ext/tnef/tests/files/baselines/long-filename-body.rtf.baseline +26 -0
  144. data/ext/tnef/tests/files/baselines/long-filename.baseline +218 -0
  145. data/ext/tnef/tests/files/baselines/message.rtf.baseline +0 -0
  146. data/ext/tnef/tests/files/baselines/missing-filenames-body.rtf.baseline +20 -0
  147. data/ext/tnef/tests/files/baselines/missing-filenames.baseline +252 -0
  148. data/ext/tnef/tests/files/baselines/multi-name-property.baseline +243 -0
  149. data/ext/tnef/tests/files/baselines/one-file.baseline +155 -0
  150. data/ext/tnef/tests/files/baselines/rtf-body.rtf.baseline +0 -0
  151. data/ext/tnef/tests/files/baselines/rtf.baseline +167 -0
  152. data/ext/tnef/tests/files/baselines/triples-body.rtf.baseline +0 -0
  153. data/ext/tnef/tests/files/baselines/triples.baseline +254 -0
  154. data/ext/tnef/tests/files/baselines/two-files.baseline +186 -0
  155. data/ext/tnef/tests/files/body.test +9 -0
  156. data/ext/tnef/tests/files/data-before-name.test +9 -0
  157. data/ext/tnef/tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.list +4 -0
  158. data/ext/tnef/tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.tnef +0 -0
  159. data/ext/tnef/tests/files/datafiles/MAPI_OBJECT.list +2 -0
  160. data/ext/tnef/tests/files/datafiles/MAPI_OBJECT.tnef +0 -0
  161. data/ext/tnef/tests/files/datafiles/Makefile.am +27 -0
  162. data/ext/tnef/tests/files/datafiles/Makefile.in +351 -0
  163. data/ext/tnef/tests/files/datafiles/body.list +1 -0
  164. data/ext/tnef/tests/files/datafiles/body.tnef +0 -0
  165. data/ext/tnef/tests/files/datafiles/data-before-name.list +4 -0
  166. data/ext/tnef/tests/files/datafiles/data-before-name.tnef +0 -0
  167. data/ext/tnef/tests/files/datafiles/garbage-at-end.list +0 -0
  168. data/ext/tnef/tests/files/datafiles/garbage-at-end.tnef +0 -0
  169. data/ext/tnef/tests/files/datafiles/long-filename.list +1 -0
  170. data/ext/tnef/tests/files/datafiles/long-filename.tnef +0 -0
  171. data/ext/tnef/tests/files/datafiles/missing-filenames.list +1 -0
  172. data/ext/tnef/tests/files/datafiles/missing-filenames.tnef +0 -0
  173. data/ext/tnef/tests/files/datafiles/multi-name-property.list +0 -0
  174. data/ext/tnef/tests/files/datafiles/multi-name-property.tnef +0 -0
  175. data/ext/tnef/tests/files/datafiles/one-file.list +1 -0
  176. data/ext/tnef/tests/files/datafiles/one-file.tnef +0 -0
  177. data/ext/tnef/tests/files/datafiles/rtf.list +1 -0
  178. data/ext/tnef/tests/files/datafiles/rtf.tnef +0 -0
  179. data/ext/tnef/tests/files/datafiles/triples.list +1 -0
  180. data/ext/tnef/tests/files/datafiles/triples.tnef +0 -0
  181. data/ext/tnef/tests/files/datafiles/two-files.list +2 -0
  182. data/ext/tnef/tests/files/datafiles/two-files.tnef +0 -0
  183. data/ext/tnef/tests/files/file-util.sh +38 -0
  184. data/ext/tnef/tests/files/garbage-at-end.test +9 -0
  185. data/ext/tnef/tests/files/long-filename.test +9 -0
  186. data/ext/tnef/tests/files/missing-filenames.test +9 -0
  187. data/ext/tnef/tests/files/multi-name-property.test +9 -0
  188. data/ext/tnef/tests/files/one-file.test +9 -0
  189. data/ext/tnef/tests/files/rtf.test +9 -0
  190. data/ext/tnef/tests/files/triples.test +9 -0
  191. data/ext/tnef/tests/files/two-files.test +9 -0
  192. data/ext/tnef/tests/util.sh +32 -0
  193. data/ext/tnef/tnef.spec.in +44 -0
  194. data/lib/tnef.rb +30 -0
  195. data/lib/tnef/executable.rb +27 -0
  196. data/lib/tnef/version.rb +3 -0
  197. metadata +243 -0
data/ext/tnef/AUTHORS ADDED
@@ -0,0 +1,7 @@
1
+
2
+ Authors of tnef
3
+ ===============
4
+
5
+ * Mark Simpson verdammelt@users.sourceforge.net
6
+
7
+
data/ext/tnef/BUGS.in ADDED
@@ -0,0 +1,5 @@
1
+ Please send any bugs/enhancement requests to:
2
+
3
+ Mark Simpson <@PACKAGE_BUGREPORT@>
4
+
5
+ ----------------------------------------------------------------------
data/ext/tnef/COPYING ADDED
@@ -0,0 +1,340 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Library General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
279
+
280
+ END OF TERMS AND CONDITIONS
281
+
282
+ How to Apply These Terms to Your New Programs
283
+
284
+ If you develop a new program, and you want it to be of the greatest
285
+ possible use to the public, the best way to achieve this is to make it
286
+ free software which everyone can redistribute and change under these terms.
287
+
288
+ To do so, attach the following notices to the program. It is safest
289
+ to attach them to the start of each source file to most effectively
290
+ convey the exclusion of warranty; and each file should have at least
291
+ the "copyright" line and a pointer to where the full notice is found.
292
+
293
+ <one line to give the program's name and a brief idea of what it does.>
294
+ Copyright (C) <year> <name of author>
295
+
296
+ This program is free software; you can redistribute it and/or modify
297
+ it under the terms of the GNU General Public License as published by
298
+ the Free Software Foundation; either version 2 of the License, or
299
+ (at your option) any later version.
300
+
301
+ This program is distributed in the hope that it will be useful,
302
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
303
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
+ GNU General Public License for more details.
305
+
306
+ You should have received a copy of the GNU General Public License
307
+ along with this program; if not, write to the Free Software
308
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
309
+
310
+
311
+ Also add information on how to contact you by electronic and paper mail.
312
+
313
+ If the program is interactive, make it output a short notice like this
314
+ when it starts in an interactive mode:
315
+
316
+ Gnomovision version 69, Copyright (C) year name of author
317
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
+ This is free software, and you are welcome to redistribute it
319
+ under certain conditions; type `show c' for details.
320
+
321
+ The hypothetical commands `show w' and `show c' should show the appropriate
322
+ parts of the General Public License. Of course, the commands you use may
323
+ be called something other than `show w' and `show c'; they could even be
324
+ mouse-clicks or menu items--whatever suits your program.
325
+
326
+ You should also get your employer (if you work as a programmer) or your
327
+ school, if any, to sign a "copyright disclaimer" for the program, if
328
+ necessary. Here is a sample; alter the names:
329
+
330
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
332
+
333
+ <signature of Ty Coon>, 1 April 1989
334
+ Ty Coon, President of Vice
335
+
336
+ This General Public License does not permit incorporating your program into
337
+ proprietary programs. If your program is a subroutine library, you may
338
+ consider it more useful to permit linking proprietary applications with the
339
+ library. If this is what you want to do, use the GNU Library General
340
+ Public License instead of this License.
@@ -0,0 +1,1550 @@
1
+ 2012-02-29 Engelke Eschner <tekai@gmx.li>
2
+ * src/file.c, src/main.c, src/mapi_attr.c, src/tnef.c
3
+ Free more memory
4
+
5
+ * src/file.c, src/file.h
6
+ Print content id with the mime type
7
+
8
+ * src/main.c
9
+ verbose option includes --list--with-mime-types
10
+
11
+ * src/tnef.c
12
+ Assign the body a respective mime type
13
+
14
+ * tests/cmdline/mime-types.baseline, tests/cmdline/stdin.baseline,
15
+ * tests/cmdline/verbose.baseline
16
+ Adjust tests to include mime type
17
+
18
+ 2011-04-18 verdammelt <verdammelt@viril.local>
19
+ * NEWS: new release
20
+
21
+ * src/main.c, configure.in:
22
+ Increasing version & copyright
23
+
24
+ * doc/tnef.1.in:
25
+ Applying patch #3014753 from Jari Aalto
26
+ (https://sourceforge.net/users/jaalto/)
27
+ to fix hyphenation.
28
+
29
+ 2010-01-30 verdammelt <verdammelt@virgil.local>
30
+ * src/ConvertUTF.[ch] src/Makefile.am
31
+ Removing unused code
32
+
33
+ * src/util[ch]:
34
+ Reverting to previous version of utf decoder.
35
+
36
+ * src/main.c:
37
+ Updating main copyright statement.
38
+
39
+ 2009-08-25 verdammelt <verdammelt@virgil.local>
40
+ * src/util.[ch], src/ConvertUTF.[ch], src/Makefile.am
41
+ Integrating Public Domain UTF conversion code
42
+
43
+ * src/path.c, src/attr.c, src/tnef.c
44
+ Fixing new warnings about 'unsigned char' mostly.
45
+
46
+ 2009-08-24 verdammelt <verdammelt@virgil.local>
47
+
48
+ * src/attr.c, src/attr.h, src/common.h, src/debug.c, src/file.c,
49
+ * src/file.h, src/main.c, src/mapi_attr.c, src/mkdata.awk,
50
+ * src/options.c, src/options.h, src/path.c, src/path.h, src/replace,
51
+ * src/rtf.c, src/tnef.c, tests/cmdline, tests/cmdline/body.baseline,
52
+ * tests/cmdline/debug.baseline, tests/cmdline/help.baseline,
53
+ * tests/cmdline/list.baseline, tests/cmdline/maxsize.baseline,
54
+ * tests/cmdline/mime-types.baseline,
55
+ * tests/cmdline/rtf-test.rtf.baseline, tests/cmdline/stdin.baseline,
56
+ * tests/cmdline/triples-test-2.rtf.baseline,
57
+ * tests/cmdline/verbose.baseline,
58
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline,
59
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline,
60
+ * tests/files/baselines/MAPI_OBJECT-body.rtf.baseline,
61
+ * tests/files/baselines/MAPI_OBJECT.baseline,
62
+ * tests/files/baselines/body.baseline,
63
+ * tests/files/baselines/data-before-name-body.rtf.baseline,
64
+ * tests/files/baselines/data-before-name.baseline,
65
+ * tests/files/baselines/garbage-at-end.baseline,
66
+ * tests/files/baselines/long-filename-body.rtf.baseline,
67
+ * tests/files/baselines/long-filename.baseline,
68
+ * tests/files/baselines/missing-filenames-body.rtf.baseline,
69
+ * tests/files/baselines/missing-filenames.baseline,
70
+ * tests/files/baselines/multi-name-property.baseline,
71
+ * tests/files/baselines/one-file.baseline,
72
+ * tests/files/baselines/rtf-body.rtf.baseline,
73
+ * tests/files/baselines/rtf.baseline,
74
+ * tests/files/baselines/triples-body.rtf.baseline,
75
+ * tests/files/baselines/triples.baseline,
76
+ * tests/files/baselines/two-files.baseline, tnef.spec.in:
77
+ Integrated code changes from Randy Diffenderfer
78
+
79
+ 2009-01-01 verdammelt <verdammelt@virgil.local>
80
+
81
+ * contrib/tnef-alpine.perl, contrib/tnef-alpine.perl.README:
82
+ Adding PERL helper script to link alpine and tnef.
83
+ Contributed by Urs Schuerer
84
+
85
+ 2008-09-28 verdammelt <verdammelt@virgil.local>
86
+
87
+ * tests/cmdline/version.baseline, configure.in, NEWS:
88
+ Releasing v1.4.5 with bug fix
89
+
90
+ * src/tnef.c, tests/cmdline/Makefile.am, tests/cmdline/stdin.baseline, tests/cmdline/stdin.test:
91
+ fixing bug 2126695
92
+
93
+ 2008-05-30 verdammelt <verdammelt@virgil.local>
94
+
95
+ * NEWS: adding news
96
+
97
+ * ChangeLog: updating ChangeLog
98
+
99
+ 2008-03-28 verdammelt <verdammelt@virgil.local>
100
+
101
+ * tests/cmdline/help.baseline, src/options.h, src/mapi_attr.c, src/main.c, src/attr.c:
102
+ Applying ignore checksum patch. Adds new command line option for
103
+ changing checksum errors into warnings
104
+
105
+ 2008-02-25 verdammelt <verdammelt@MBPro.local>
106
+
107
+ * INSTALL, README, depcomp, install-sh, missing, mkinstalldirs:
108
+ updating build artefacts
109
+
110
+ * doc/tnef.1.in: correcting typos in man page
111
+
112
+ * configure.in, src/main.c, tests/cmdline/version.baseline, tnef.spec.in:
113
+ increasing version number and updating copyright year
114
+
115
+ 2006-09-15 verdammelt <verdammelt@MBPro.local>
116
+
117
+ * tnef.spec.in: Fixing version number and share path
118
+
119
+ 2006-08-28 verdammelt <verdammelt@freya>
120
+
121
+ * tests/cmdline/body.baseline: Updating baseline for unicode change
122
+
123
+ 2006-08-25 verdammelt <verdammelt@freya>
124
+
125
+ * configure.in, NEWS: incremeting version
126
+
127
+ * src/mapi_attr.c:
128
+ re-instating unicode_to_utf8 usage lost during v1.4 development
129
+
130
+ * tests/files/baselines/body.baseline, tests/cmdline/version.baseline:
131
+ Fixing baseline given code changes
132
+
133
+ 2006-08-06 verdammelt <verdammelt@freya>
134
+
135
+ * tests/files/file-util.sh (run_test):
136
+ improving handling for stdout and stderr to make tests
137
+ more robust.
138
+
139
+ * tests/files/baselines/garbage-at-end.baseline: fixing baseline
140
+
141
+ * tests/files/baselines/Makefile.am (EXTRA_DIST):
142
+ adding garbage-at-end.baseline
143
+
144
+ * tests/files/datafiles/Makefile.am (EXTRA_DIST):
145
+ adding garbage-at-end.list, garbage-at-end.tnef
146
+
147
+ * src/tnef.c (data_left): fixing problem with variable declarations
148
+
149
+ 2006-07-23 verdammelt <verdammelt@freya>
150
+
151
+ * configure.in, tnef/configure.in, NEWS, tnef/NEWS:
152
+ Preparing to release v1.4.2
153
+
154
+ * tests/cmdline/version.baseline, tnef/tests/cmdline/version.baseline:
155
+ updating version number
156
+
157
+ * tests/files/baselines/garbage-at-end.baseline, tests/files/datafiles/garbage-at-end.list, tests/files/datafiles/garbage-at-end.tnef, tests/files/garbage-at-end.test, tnef/tests/files/baselines/garbage-at-end.baseline, tnef/tests/files/datafiles/garbage-at-end.list, tnef/tests/files/datafiles/garbage-at-end.tnef, tnef/tests/files/garbage-at-end.test:
158
+ New file.
159
+
160
+ * tests/files/baselines/garbage-at-end.baseline, tests/files/datafiles/garbage-at-end.list, tests/files/datafiles/garbage-at-end.tnef, tests/files/garbage-at-end.test, tnef/tests/files/baselines/garbage-at-end.baseline, tnef/tests/files/datafiles/garbage-at-end.list, tnef/tests/files/datafiles/garbage-at-end.tnef, tnef/tests/files/garbage-at-end.test:
161
+ new test for 'garbage at end' problem
162
+
163
+ * src/replace/dummy.c, tnef/src/replace/dummy.c: New file.
164
+
165
+ * src/replace/dummy.c, tnef/src/replace/dummy.c:
166
+ new dummy file/function to ensure that libreplace.a is never empty
167
+
168
+ * tests/files/Makefile.am, tnef/tests/files/Makefile.am:
169
+ New test for the 'garbage at end' problem
170
+
171
+ * src/replace/Makefile.am, tnef/src/replace/Makefile.am:
172
+ New dummy file/function so that libreplace.a is never empty
173
+
174
+ * src/tnef.c, tnef/src/tnef.c:
175
+ removing sys/stat.h -- that is now in common.h
176
+
177
+ * src/common.h, tnef/src/common.h: conditionally including sys/stat.h
178
+
179
+ * configure.in, tnef/configure.in:
180
+ Adding AC_HEADER_STAT - used in tnef.c.
181
+
182
+ 2006-04-23 verdammelt <verdammelt@freya>
183
+
184
+ * src/tnef.c, tnef/src/tnef.c (get_body_files):
185
+ correcting mistake in allocation of File pointers.
186
+ Was allocating objects of type FILE not File!
187
+
188
+ * src/file.c, tnef/src/file.c (file_add_mapi_attrs):
189
+ fixing allocation of mime_types to be the
190
+ correct size.
191
+
192
+ 2006-04-23 verdammelt <verdammelt@freya>
193
+
194
+ * NEWS: Adding info about v1.4.1
195
+
196
+ * configure.in: Updating version number
197
+
198
+ * tests/cmdline/version.baseline:
199
+ Updating test baseline for new version number
200
+
201
+ * tests/cmdline/help.baseline:
202
+ Updating test baseline to expect --list-with-mime-types option
203
+
204
+ * tests/cmdline/Makefile.am: New tests for mime-type feature
205
+
206
+ * tests/cmdline/mime-types.test: New file.
207
+
208
+ * tests/cmdline/mime-types.test: New tests for mime-type feature
209
+
210
+ * tests/cmdline/mime-types.baseline: New file.
211
+
212
+ * tests/cmdline/mime-types.baseline: New tests for mime-type feature
213
+
214
+ * src/options.c: (g_flags) changing to int from int8.
215
+
216
+ * src/options.h: new LISTMIME option.
217
+
218
+ * src/main.c (USAGE):
219
+ new --list-with-mime-types added to usage statement
220
+ (parse_cmdline): handling --list-with-mime-types
221
+
222
+ * src/file.h: (struct File) New mime_type member.
223
+
224
+ * src/file.c (file_write):
225
+ Adding optional printing of mime type with filename.
226
+ (file_add_mapi_attrs): Handling of MAPI_ATTACH_MIME_TAG to save the
227
+ MIME type of the file.
228
+ (file_free): Freeing the new mime-type.
229
+
230
+ 2006-03-20 verdammelt <verdammelt@freya>
231
+
232
+ * tests/cmdline/body.baseline, tests/cmdline/maxsize.baseline, tests/cmdline/maxsize.test, tests/cmdline/version.baseline, tests/files/Makefile.am, tests/files/baselines/Makefile.am, tests/files/baselines/data-before-name.baseline, tests/files/baselines/multi-name-property.baseline, tests/files/baselines/triples.baseline, tests/files/datafiles/Makefile.am, tests/files/datafiles/multi-name-property.list, tests/files/datafiles/multi-name-property.tnef, tests/files/multi-name-property.test, ChangeLog, NEWS, TODO, configure.in, src/Makefile.am, src/alloc.c, src/alloc.h, src/attr.c, src/attr.h, src/common.h, src/date.c, src/date.h, src/debug.c, src/debug.h, src/file.c, src/file.h, src/main.c, src/mapi_attr.c, src/mapi_attr.h, src/mkdata.awk, src/options.c, src/options.h, src/path.c, src/path.h, src/replace/Makefile.am, src/replace/basename.c, src/replace/ldiv.c, src/replace/ldiv.h, src/replace/malloc.c, src/replace/strdup.c, src/rtf.c, src/rtf.h, src/tnef-names.data, src/tnef.c, src/tnef.h, src/util.c, src/util.h, src/xstrdup.c:
233
+ merging from v1.4
234
+
235
+ 2006-03-18 verdammelt <verdammelt@freya>
236
+
237
+ * NEWS: Release of v1.4
238
+
239
+ * tests/files/baselines/Makefile.am, tests/files/datafiles/Makefile.am:
240
+ adding files to dist.
241
+
242
+ 2006-03-12 verdammelt <verdammelt@freya>
243
+
244
+ * tests/files/datafiles/multi-name-property.list, tests/files/datafiles/multi-name-property.tnef:
245
+ New file.
246
+
247
+ * tests/files/datafiles/multi-name-property.list, tests/files/datafiles/multi-name-property.tnef:
248
+ adding test for handling of multi-name properties
249
+
250
+ * tests/files/baselines/multi-name-property.baseline: New file.
251
+
252
+ * tests/files/baselines/multi-name-property.baseline:
253
+ adding test for handling of multi-name properties
254
+
255
+ * tests/files/multi-name-property.test: New file.
256
+
257
+ * tests/files/Makefile.am, tests/files/multi-name-property.test:
258
+ adding test for handling of multi-name properties
259
+
260
+ * tests/cmdline/maxsize.baseline, tests/cmdline/maxsize.test:
261
+ tweaking maxsize tests to overcome co-incidence on 64 bit and alpha arch.
262
+
263
+ 2006-03-12 verdammelt <verdammelt@freya>
264
+
265
+ * tests/files/datafiles/multi-name-property.list, tests/files/datafiles/multi-name-property.tnef:
266
+ New file.
267
+
268
+ * tests/files/datafiles/multi-name-property.list, tests/files/datafiles/multi-name-property.tnef:
269
+ adding test for handling of multi-name properties
270
+
271
+ * tests/files/baselines/multi-name-property.baseline: New file.
272
+
273
+ * tests/files/baselines/multi-name-property.baseline:
274
+ adding test for handling of multi-name properties
275
+
276
+ * tests/files/multi-name-property.test: New file.
277
+
278
+ * tests/files/Makefile.am, tests/files/multi-name-property.test:
279
+ adding test for handling of multi-name properties
280
+
281
+ * tests/cmdline/maxsize.baseline, tests/cmdline/maxsize.test:
282
+ tweaking maxsize tests to overcome co-incidence on 64 bit and alpha arch.
283
+
284
+ 2006-03-07 verdammelt <verdammelt@freya>
285
+
286
+ * date.c:
287
+ date_to_str: increasing buffer size to remove problem with buffer
288
+ overrun
289
+
290
+ 2006-03-06 verdammelt <verdammelt@freya>
291
+
292
+ * mkdata.awk: fixing syntax error
293
+
294
+ * Makefile.am: missing write.h
295
+
296
+ 2006-03-04 verdammelt <verdammelt@freya>
297
+
298
+ * replace/Makefile.am: removing ldiv.h from distributed sources
299
+
300
+ 2006-02-20 verdammelt <verdammelt@freya>
301
+
302
+ * replace/strdup.c, replace/malloc.c, replace/basename.c, xstrdup.c, util.h, util.c, tnef.h, tnef.c, rtf.h, rtf.c, path.h, path.c, options.h, options.c, mkdata.awk, mapi_attr.h, mapi_attr.c, main.c, file.h, file.c, debug.h, debug.c, date.h, date.c, common.h, attr.h, attr.c, alloc.h, alloc.c:
303
+ Updating copyright statement.
304
+
305
+ * replace/ldiv.h, replace/ldiv.c: no longer needed
306
+
307
+ * mapi_attr.c:
308
+ Removing ldiv, user contributed another way to compute padding size
309
+ Fixing parsing of mapi attributes with respect to multi-value
310
+ properties
311
+
312
+ * mapi_attr.h: Adding defines to help with parsing of mapi attrs
313
+
314
+ * rtf.c, tnef-names.data: Fixing typo
315
+
316
+ 2006-02-20 verdammelt <verdammelt@freya>
317
+
318
+ * NEWS: updating NEWS
319
+
320
+ * tests/cmdline/version.baseline, src/replace/strdup.c, src/replace/malloc.c, src/replace/basename.c, src/xstrdup.c, src/util.h, src/util.c, src/tnef.h, src/tnef.c, src/rtf.h, src/rtf.c, src/path.h, src/path.c, src/options.h, src/options.c, src/mkdata.awk, src/mapi_attr.h, src/mapi_attr.c, src/main.c, src/file.h, src/file.c, src/debug.h, src/debug.c, src/date.h, src/date.c, src/common.h, src/attr.h, src/attr.c, src/alloc.h, src/alloc.c:
321
+ Updating copyright statement.
322
+
323
+ * src/replace/ldiv.h, src/replace/ldiv.c: no longer needed
324
+
325
+ * TODO: updating TODO
326
+
327
+ * src/mapi_attr.c:
328
+ Removing ldiv, user contributed another way to compute padding size
329
+ Fixing parsing of mapi attributes with respect to multi-value
330
+ properties
331
+
332
+ * src/mapi_attr.h: Adding defines to help with parsing of mapi attrs
333
+
334
+ * configure.in: Removing ldiv
335
+
336
+ * tests/files/baselines/triples.baseline, tests/files/baselines/data-before-name.baseline, tests/cmdline/body.baseline, src/rtf.c, src/tnef-names.data:
337
+ Fixing typo
338
+
339
+ 2005-10-14 verdammelt <verdammelt@freya>
340
+
341
+ * NEWS: Merging from v1.3.x and adding v1.4 base info
342
+
343
+ * src/rtf.h: changing buffers to be unsigned char*
344
+
345
+ * src/rtf.c: changing buffers to be unsigned char*
346
+ (decompress_rtf_data): merging bug fix from v1.3.4
347
+
348
+ * src/util.h, src/util.c, src/tnef.c, src/mapi_attr.h, src/mapi_attr.c, src/file.h, src/file.c, src/date.h, src/date.c, src/attr.h, src/attr.c:
349
+ changing buffers to be unsigned char*
350
+
351
+ * tests/files/baselines/two-files.baseline, tests/files/baselines/triples-body.rtf.baseline, tests/files/baselines/triples.baseline, tests/files/baselines/rtf-body.rtf.baseline, tests/files/baselines/rtf.baseline, tests/files/baselines/one-file.baseline, tests/files/baselines/missing-filenames-body.rtf.baseline, tests/files/baselines/missing-filenames.baseline, tests/files/baselines/MAPI_OBJECT-body.rtf.baseline, tests/files/baselines/MAPI_OBJECT.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline, tests/files/baselines/long-filename-body.rtf.baseline, tests/files/baselines/long-filename.baseline, tests/files/baselines/data-before-name-body.rtf.baseline, tests/files/baselines/body.baseline:
352
+ Changes to debug output including new MAPI name definitions and
353
+ corrected rtf output.
354
+
355
+ * tests/cmdline/triples-test-2.rtf.baseline, tests/cmdline/rtf-test.rtf.baseline, tests/cmdline/body.baseline:
356
+ Changes to debug output including new MAPI name definitions.
357
+
358
+ 2005-10-13 verdammelt <verdammelt@freya>
359
+
360
+ * tests/cmdline/maxsize.baseline, tests/cmdline/debug.baseline:
361
+ Additional MAPI attribute names
362
+
363
+ * contrib/evolution.helper.README, contrib/evolution.helper:
364
+ New files from v1.3
365
+
366
+ * .cvsignore: adding BUGS to ignore list
367
+
368
+ * tests/files/baselines/Makefile.am, tests/files/baselines/body-body.html.baseline, tests/files/baselines/body.baseline, tests/files/baselines/data-before-name-body.rtf.baseline, tests/files/baselines/data-before-name.baseline, tests/files/baselines/long-filename-body.rtf.baseline, tests/files/baselines/long-filename.baseline, tests/files/baselines/missing-filenames-body.rtf.baseline, tests/files/baselines/missing-filenames.baseline, tests/files/baselines/rtf-body.rtf.baseline, tests/files/baselines/triples-body.rtf.baseline, tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.list, tests/files/datafiles/MAPI_OBJECT.list, tests/files/datafiles/Makefile.am, tests/files/datafiles/body.list, tests/files/datafiles/body.tnef, tests/files/datafiles/data-before-name.list, tests/files/datafiles/long-filename.list, tests/files/datafiles/missing-filenames.list, tests/files/datafiles/rtf.list, tests/files/datafiles/triples.list, doc/tnef.1.in, src/main.c, src/mapi-names.data, src/options.h, src/rtf.c, src/tnef.c, src/tnef.h, src/util.c, src/util.h, tests/cmdline/Makefile.am, tests/cmdline/body-test.html.baseline, tests/cmdline/body.baseline, tests/cmdline/body.test, tests/cmdline/help.baseline, tests/cmdline/message.html.baseline, tests/cmdline/rtf-test.rtf.baseline, tests/cmdline/triples-test-2.rtf.baseline, tests/cmdline/triples-test-2.txt.baseline, tests/cmdline/triples-test.txt.baseline, tests/files/Makefile.am, tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline, tests/files/baselines/MAPI_OBJECT-body.rtf.baseline, tests/files/baselines/MAPI_OBJECT.baseline, tests/files/body.test, tests/files/file-util.sh, ChangeLog, NEWS, configure.in, tnef.spec.in:
369
+ checking in old merge from v1.3
370
+
371
+ 2005-10-11 verdammelt <verdammelt@freya>
372
+
373
+ * Release v1.3.4
374
+
375
+ * ChangeLog: New version
376
+
377
+ * configure.in, tests/cmdline/version.baseline: fixing version number
378
+
379
+ * tests/files/baselines/triples-body.rtf.baseline, tests/files/baselines/rtf-body.rtf.baseline, tests/files/baselines/missing-filenames-body.rtf.baseline, tests/files/baselines/MAPI_OBJECT-body.rtf.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline, tests/files/baselines/long-filename-body.rtf.baseline, tests/files/baselines/data-before-name-body.rtf.baseline, tests/cmdline/triples-test-2.rtf.baseline, tests/cmdline/rtf-test.rtf.baseline:
380
+ updating RTF file baselines given new RTF decompression fix.
381
+
382
+ 2005-10-10 verdammelt <verdammelt@freya>
383
+
384
+ * src/tnef.c:
385
+ Changing various 'char*' declarations for binary data to 'unsigned
386
+ char*' to fix compiler warnings.
387
+
388
+ * src/tnef.c (decompress_rtf_buf):
389
+ fixing bug #1318728 (problem with length during
390
+ uncompressing of rtf data)
391
+
392
+ 2005-10-08 verdammelt <verdammelt@freya>
393
+
394
+ * contrib/evolution.helper, contrib/evolution.helper.README:
395
+ Adding contrib diretory with evolution helper script to begin with.
396
+
397
+ * contrib/evolution.helper, contrib/evolution.helper.README: New file.
398
+
399
+ 2005-05-17 verdammelt <verdammelt@freya>
400
+
401
+ * Release v1.3.3
402
+
403
+ * NEWS, configure.in, ChangeLog: New version
404
+
405
+ * src/main.c: (parse_cmdline): fixing small bug in shifting
406
+ argument to all lowercase.
407
+
408
+ * tests/cmdline/Makefile.am,
409
+ * tests/files/datafile/Makefile.am,
410
+ * tests/files/baselines/Makefile.am:
411
+ New items for distribution.
412
+
413
+ * acinclude.m4: (AC_COMPILE_WARNINGS, AC_DEBUG_COMPILE) fixing
414
+ quoting warning.
415
+
416
+ * doc/tnef.1.in: Updating document for new --save-body and
417
+ --body-pref feature.
418
+
419
+
420
+ * tnef.spec.in:
421
+ [Bug# 1200197] fix from John Simpson <jms1@users.sf.net>
422
+
423
+ 2005-05-16 verdammelt <verdammelt@freya>
424
+
425
+ * tests/files/baselines/rtf2.baseline,
426
+ * tests/files/datafiles/rtf2.list,
427
+ * tests/files/datafiles/rtf2.tnef,
428
+ * tests/files/rtf2.test:
429
+ rtf2 test superceeded body test
430
+
431
+ * tests/files/baselines/body.baseline: new body baseline
432
+
433
+ * tests/cmdline/body.baseline,
434
+ * tests/files/baselines/triples-body.rtf.baseline,
435
+ * tests/files/datafiles/body.list:
436
+ new baselines & test data
437
+
438
+ * tests/cmdline/body.test, tests/files/body.test:
439
+ new tests for body feature
440
+
441
+ * src/tnef.c:
442
+ new function get_text_data encapsulating code to get text message
443
+ body
444
+
445
+ * src/main.c: initializing i
446
+
447
+ * tests/cmdline/triples-test.txt.baseline,
448
+ * tests/cmdline/triples-test-2.txt.baseline,
449
+ * tests/cmdline/triples-test-2.rtf.baseline,
450
+ * tests/cmdline/rtf-test.rtf.baseline,
451
+ * tests/cmdline/message.html.baseline,
452
+ * tests/cmdline/Makefile.am,
453
+ * tests/cmdline/body-test.html.baseline:
454
+ new --save-body test and use of it in other tests.
455
+
456
+ * tests/files/datafiles/triples.list,
457
+ * tests/files/datafiles/rtf.list,
458
+ * tests/files/datafiles/missing-filenames.list,
459
+ * tests/files/datafiles/MAPI_OBJECT.list,
460
+ * tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.list,
461
+ * tests/files/datafiles/long-filename.list,
462
+ * tests/files/datafiles/data-before-name.list,
463
+ * tests/files/datafiles/body.tnef,
464
+ * tests/files/baselines/triples.baseline,
465
+ * tests/files/baselines/rtf-body.rtf.baseline,
466
+ * tests/files/baselines/rtf.baseline,
467
+ * tests/files/baselines/missing-filenames-body.rtf.baseline,
468
+ * tests/files/baselines/missing-filenames.baseline,
469
+ * tests/files/baselines/MAPI_OBJECT-body.rtf.baseline,
470
+ * tests/files/baselines/MAPI_OBJECT.baseline,
471
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline,
472
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline,
473
+ * tests/files/baselines/long-filename-body.rtf.baseline,
474
+ * tests/files/baselines/long-filename.baseline,
475
+ * tests/files/baselines/data-before-name-body.rtf.baseline,
476
+ * tests/files/baselines/data-before-name.baseline,
477
+ * tests/files/baselines/body-body.html.baseline,
478
+ * tests/files/Makefile.am,
479
+ * tests/files/file-util.sh :
480
+ New test for body files.
481
+ Updating other tests to use the --save-body switch (new baselines etc.)
482
+
483
+ 2005-05-04 verdammelt <verdammelt@freya>
484
+
485
+ * tests/files/baselines/long-filename.baseline, tests/files/baselines/missing-filenames.baseline, tests/files/baselines/one-file.baseline, tests/files/baselines/rtf.baseline, tests/files/baselines/two-files.baseline, tests/files/baselines/MAPI_OBJECT.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline:
486
+ Updating baselines for new named attributes
487
+
488
+ * tests/files/baselines/rtf2.baseline, tests/files/rtf2.test:
489
+ Updating rtf body saving test with new preferences
490
+
491
+ * tests/cmdline/debug.baseline, tests/cmdline/help.baseline, tests/cmdline/maxsize.baseline:
492
+ Updating baselines for new named attributes
493
+
494
+ * src/tnef.c:
495
+ Saving the body whether it is text, rtf, or html. Using body_pref
496
+ feature to determine which order to try to save in (or save all of
497
+ them).
498
+
499
+ * src/main.c:
500
+ Making the --save-rtf feature a more general --save-body feature.
501
+ This entails adding a --body-pref flag which specifies the preference
502
+ for the type of body to save (an ordering). This preference must be
503
+ validated.
504
+
505
+ * src/tnef.h:
506
+ Making the --save-rtf feature a more general --save-body feature
507
+
508
+ * src/mapi-names.data:
509
+ Adding new-found names. Most important is MAPI_BODY_HTML (0x1013)
510
+
511
+ 2005-04-23 verdammelt <verdammelt@freya>
512
+
513
+ * tnef.c: fixing memory leak with GUID
514
+
515
+ 2005-03-07 verdammelt <verdammelt@freya>
516
+
517
+ * main.c: ignoring negative maxsize options
518
+
519
+ * common.h: moving formatting macros to write.c
520
+
521
+ * mapi_attr.c: using new copy_guid_from_attr function
522
+
523
+ * write.h, write.c: New output methods for signed integers
524
+ Updating other output methods
525
+
526
+ 2005-03-05 verdammelt <verdammelt@freya>
527
+
528
+ * Release v1.3.2
529
+
530
+ * ChangeLog: update again.
531
+
532
+ * maxsize.baseline: Updating baseline to match proper output
533
+
534
+ 2005-02-22 verdammelt <verdammelt@freya>
535
+
536
+ * NEWS, ChangeLog, configure.in: new version
537
+
538
+ * tests/cmdline/version.baseline: new version
539
+
540
+ * tests/cmdline/maxsize.test: refixing
541
+
542
+ 2005-02-13 verdammelt <verdammelt@freya>
543
+
544
+ * tests/cmdline/maxsize.test, tests/cmdline/maxsize.baseline:
545
+ Changing initial tests from 23 bytes to 25 bytes because on 64 bit
546
+ systems the sizeof(Attr) is 24 bytes itself, was causing the test to
547
+ fail due to different output (but not incorrect program
548
+ operation). [Bug# 1121539]
549
+
550
+ 2005-02-12 verdammelt <verdammelt@freya>
551
+
552
+ * src/main.c (parse_cmdline):
553
+ ignoring negative values to maxsize option. [Bug# 1121539]
554
+
555
+ 2005-02-11 verdammelt <verdammelt@freya>
556
+
557
+ * tnef.c (copy_guid_from_buf):
558
+ [Bug# 1117373]. New function to parse a GUID
559
+ from a character buffer correctly; big endian machines interpreted it
560
+ incorrectly, forcing to be dealt with as little endian number.
561
+
562
+ (decode_mapi): Use of new function
563
+
564
+ (dump_mapi_attr): Fixing compiler warnings
565
+
566
+ 2005-02-07 verdammelt <verdammelt@freya>
567
+
568
+ * configure.in: adding stroul to checked functions
569
+
570
+ * configure.in, src/basename.h, src/basename.c:
571
+ [Bug# 1109683] - fixing declaration of basename
572
+
573
+ 2005-02-05 verdammelt <verdammelt@freya>
574
+
575
+ * Release v1.3.1
576
+
577
+ * tests/cmdline/version.baseline:
578
+ removing extra spaces which screwed up the test
579
+
580
+ 2005-02-01 verdammelt <verdammelt@freya>
581
+
582
+ * ChangeLog, NEWS: new version
583
+
584
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline:
585
+ Fixing boolean output changes the baseline.
586
+
587
+ * tests/cmdline/version.baseline, configure.in: Bump the version number
588
+
589
+ * src/tnef.c (MAPI_GUID):
590
+ changed member types to ensure portability to 64 bit
591
+ system
592
+ (dump_mapi_attr): Fixed printing of boolean, Mac & Sparc platforms was
593
+ showing incorect value.
594
+ (decode_mapi): removed bogus C++ style comments
595
+ (save_rtf_data): C doesn't allow mixing declarations and statements
596
+ but GCC lets you!
597
+
598
+ * tnef.spec.in:
599
+ made changes as suggested by jmsl@users.sf.net [BUG: #1102128]
600
+
601
+ * src/main.c: Updating copyright date
602
+
603
+ 2005-05-17 verdammelt <verdammelt@freya>
604
+
605
+ * Release v1.3.3
606
+
607
+ * NEWS, configure.in, ChangeLog: New version
608
+
609
+ * src/main.c: (parse_cmdline): fixing small bug in shifting
610
+ argument to all lowercase.
611
+
612
+ * tests/cmdline/Makefile.am,
613
+ * tests/files/datafile/Makefile.am,
614
+ * tests/files/baselines/Makefile.am:
615
+ New items for distribution.
616
+
617
+ * acinclude.m4: (AC_COMPILE_WARNINGS, AC_DEBUG_COMPILE) fixing
618
+ quoting warning.
619
+
620
+ * doc/tnef.1.in: Updating document for new --save-body and
621
+ --body-pref feature.
622
+
623
+
624
+ * tnef.spec.in:
625
+ [Bug# 1200197] fix from John Simpson <jms1@users.sf.net>
626
+
627
+ 2005-05-16 verdammelt <verdammelt@freya>
628
+
629
+ * tests/files/baselines/rtf2.baseline,
630
+ * tests/files/datafiles/rtf2.list,
631
+ * tests/files/datafiles/rtf2.tnef,
632
+ * tests/files/rtf2.test:
633
+ rtf2 test superceeded body test
634
+
635
+ * tests/files/baselines/body.baseline: new body baseline
636
+
637
+ * tests/cmdline/body.baseline,
638
+ * tests/files/baselines/triples-body.rtf.baseline,
639
+ * tests/files/datafiles/body.list:
640
+ new baselines & test data
641
+
642
+ * tests/cmdline/body.test, tests/files/body.test:
643
+ new tests for body feature
644
+
645
+ * src/tnef.c:
646
+ new function get_text_data encapsulating code to get text message
647
+ body
648
+
649
+ * src/main.c: initializing i
650
+
651
+ * tests/cmdline/triples-test.txt.baseline,
652
+ * tests/cmdline/triples-test-2.txt.baseline,
653
+ * tests/cmdline/triples-test-2.rtf.baseline,
654
+ * tests/cmdline/rtf-test.rtf.baseline,
655
+ * tests/cmdline/message.html.baseline,
656
+ * tests/cmdline/Makefile.am,
657
+ * tests/cmdline/body-test.html.baseline:
658
+ new --save-body test and use of it in other tests.
659
+
660
+ * tests/files/datafiles/triples.list,
661
+ * tests/files/datafiles/rtf.list,
662
+ * tests/files/datafiles/missing-filenames.list,
663
+ * tests/files/datafiles/MAPI_OBJECT.list,
664
+ * tests/files/datafiles/MAPI_ATTACH_DATA_OBJ.list,
665
+ * tests/files/datafiles/long-filename.list,
666
+ * tests/files/datafiles/data-before-name.list,
667
+ * tests/files/datafiles/body.tnef,
668
+ * tests/files/baselines/triples.baseline,
669
+ * tests/files/baselines/rtf-body.rtf.baseline,
670
+ * tests/files/baselines/rtf.baseline,
671
+ * tests/files/baselines/missing-filenames-body.rtf.baseline,
672
+ * tests/files/baselines/missing-filenames.baseline,
673
+ * tests/files/baselines/MAPI_OBJECT-body.rtf.baseline,
674
+ * tests/files/baselines/MAPI_OBJECT.baseline,
675
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ-body.rtf.baseline,
676
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline,
677
+ * tests/files/baselines/long-filename-body.rtf.baseline,
678
+ * tests/files/baselines/long-filename.baseline,
679
+ * tests/files/baselines/data-before-name-body.rtf.baseline,
680
+ * tests/files/baselines/data-before-name.baseline,
681
+ * tests/files/baselines/body-body.html.baseline,
682
+ * tests/files/Makefile.am,
683
+ * tests/files/file-util.sh :
684
+ New test for body files.
685
+ Updating other tests to use the --save-body switch (new baselines etc.)
686
+
687
+ 2005-05-04 verdammelt <verdammelt@freya>
688
+
689
+ * tests/files/baselines/long-filename.baseline, tests/files/baselines/missing-filenames.baseline, tests/files/baselines/one-file.baseline, tests/files/baselines/rtf.baseline, tests/files/baselines/two-files.baseline, tests/files/baselines/MAPI_OBJECT.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline:
690
+ Updating baselines for new named attributes
691
+
692
+ * tests/files/baselines/rtf2.baseline, tests/files/rtf2.test:
693
+ Updating rtf body saving test with new preferences
694
+
695
+ * tests/cmdline/debug.baseline, tests/cmdline/help.baseline, tests/cmdline/maxsize.baseline:
696
+ Updating baselines for new named attributes
697
+
698
+ * src/tnef.c:
699
+ Saving the body whether it is text, rtf, or html. Using body_pref
700
+ feature to determine which order to try to save in (or save all of
701
+ them).
702
+
703
+ * src/main.c:
704
+ Making the --save-rtf feature a more general --save-body feature.
705
+ This entails adding a --body-pref flag which specifies the preference
706
+ for the type of body to save (an ordering). This preference must be
707
+ validated.
708
+
709
+ * src/tnef.h:
710
+ Making the --save-rtf feature a more general --save-body feature
711
+
712
+ * src/mapi-names.data:
713
+ Adding new-found names. Most important is MAPI_BODY_HTML (0x1013)
714
+
715
+ 2005-04-23 verdammelt <verdammelt@freya>
716
+
717
+ * tnef.c: fixing memory leak with GUID
718
+
719
+ 2005-03-07 verdammelt <verdammelt@freya>
720
+
721
+ * main.c: ignoring negative maxsize options
722
+
723
+ * common.h: moving formatting macros to write.c
724
+
725
+ * mapi_attr.c: using new copy_guid_from_attr function
726
+
727
+ * write.h, write.c: New output methods for signed integers
728
+ Updating other output methods
729
+
730
+ 2005-03-05 verdammelt <verdammelt@freya>
731
+
732
+ * Release v1.3.2
733
+
734
+ * ChangeLog: update again.
735
+
736
+ * maxsize.baseline: Updating baseline to match proper output
737
+
738
+ 2005-02-22 verdammelt <verdammelt@freya>
739
+
740
+ * NEWS, ChangeLog, configure.in: new version
741
+
742
+ * tests/cmdline/version.baseline: new version
743
+
744
+ * tests/cmdline/maxsize.test: refixing
745
+
746
+ 2005-02-13 verdammelt <verdammelt@freya>
747
+
748
+ * tests/cmdline/maxsize.test, tests/cmdline/maxsize.baseline:
749
+ Changing initial tests from 23 bytes to 25 bytes because on 64 bit
750
+ systems the sizeof(Attr) is 24 bytes itself, was causing the test to
751
+ fail due to different output (but not incorrect program
752
+ operation). [Bug# 1121539]
753
+
754
+ 2005-02-12 verdammelt <verdammelt@freya>
755
+
756
+ * src/main.c (parse_cmdline):
757
+ ignoring negative values to maxsize option. [Bug# 1121539]
758
+
759
+ 2005-02-11 verdammelt <verdammelt@freya>
760
+
761
+ * tnef.c (copy_guid_from_buf):
762
+ [Bug# 1117373]. New function to parse a GUID
763
+ from a character buffer correctly; big endian machines interpreted it
764
+ incorrectly, forcing to be dealt with as little endian number.
765
+
766
+ (decode_mapi): Use of new function
767
+
768
+ (dump_mapi_attr): Fixing compiler warnings
769
+
770
+ 2005-02-07 verdammelt <verdammelt@freya>
771
+
772
+ * configure.in: adding stroul to checked functions
773
+
774
+ * configure.in, src/basename.h, src/basename.c:
775
+ [Bug# 1109683] - fixing declaration of basename
776
+
777
+ 2005-02-05 verdammelt <verdammelt@freya>
778
+
779
+ * Release v1.3.1
780
+
781
+ * tests/cmdline/version.baseline:
782
+ removing extra spaces which screwed up the test
783
+
784
+ 2005-02-01 verdammelt <verdammelt@freya>
785
+
786
+ * ChangeLog, NEWS: new version
787
+
788
+ * tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline:
789
+ Fixing boolean output changes the baseline.
790
+
791
+ * tests/cmdline/version.baseline, configure.in: Bump the version number
792
+
793
+ * src/tnef.c (MAPI_GUID):
794
+ changed member types to ensure portability to 64 bit
795
+ system
796
+ (dump_mapi_attr): Fixed printing of boolean, Mac & Sparc platforms was
797
+ showing incorect value.
798
+ (decode_mapi): removed bogus C++ style comments
799
+ (save_rtf_data): C doesn't allow mixing declarations and statements
800
+ but GCC lets you!
801
+
802
+ * tnef.spec.in:
803
+ made changes as suggested by jmsl@users.sf.net [BUG: #1102128]
804
+
805
+ * src/main.c: Updating copyright date
806
+
807
+ 2005-01-15 verdammelt <verdammelt@freya>
808
+
809
+ * tnef.1.in: adding info about --save-rtf
810
+
811
+ 2005-01-13 verdammelt <verdammelt@freya>
812
+
813
+ * src/tnef.c:
814
+ (decode_mapi) initial parsing of multi-named GUID prefixed
815
+ properties.
816
+
817
+ 2004-11-15 verdammelt <verdammelt@freya>
818
+
819
+ * src/tnef.c (munge_fname): length parameter is unecessary.
820
+ (decode_mapi): removing unused parameter
821
+ (decode_mapi): using real length for attribute length and skipping
822
+ over pad instead of acting like the actual data length was the padded
823
+ length.
824
+ (save_rtf_data): properly 'munging' the name to get the directory
825
+ (file_add_mapi_attrs): new munge_fname signature
826
+ (file_add_attr): new munge_fname signature
827
+
828
+ * configure.in: upping the version number
829
+
830
+ * tests/cmdline/version.baseline: updating version number
831
+
832
+ * tests/cmdline/Makefile.am:
833
+ commenting out the not-yet-implemented tests
834
+
835
+ * tests/files/Makefile.am, tests/files/rtf2.test, tests/files/baseline/message.rtf.baseline, tests/files/baseline/rtf2.baseline, tests/files/datafiles/rtf2.list:
836
+ new test for the --save-rtf switch
837
+
838
+ * tests/files/file-util.sh:
839
+ (run_test) adding TEST_EXTRA_FLAGS for the rtf2 test
840
+
841
+ * tests/files/baselines/two-files.baseline, tests/files/baselines/triples.baseline, tests/files/baselines/rtf.baseline, tests/files/baselines/one-file.baseline, tests/files/baselines/missing-filenames.baseline, tests/files/baselines/long-filename.baseline, tests/files/baselines/data-before-name.baseline, tests/files/baselines/VIA_Nytt_14021.htm.baseline, tests/files/baselines/VIA_Nytt_1402.pdf.baseline, tests/files/baselines/MAPI_OBJECT.baseline, tests/files/baselines/MAPI_ATTACH_DATA_OBJ.baseline, tests/cmdline/maxsize.baseline, tests/cmdline/help.baseline, tests/cmdline/debug.baseline:
842
+ New baselines due to new message attribute parsing
843
+
844
+ * src/main.c:
845
+ (parse_cmdline) PACKAGE is no longer valid, PACKAGE_NAME needs to be
846
+ used instead
847
+
848
+ * tests/util.sh: (check_test_full) capturing stderr as well as stdout
849
+
850
+ 2004-11-13 verdammelt <verdammelt@freya>
851
+
852
+ * README: adding a bit more explanation
853
+
854
+ * src/tnef.c:
855
+ adding parsing of message attributes and parsing of RTF message content
856
+
857
+ * src/tnef.h, src/main.c: adding save-rtf feature
858
+
859
+ 2004-02-16 verdammelt <verdammelt@freya>
860
+
861
+ * src/tnef.c, src/malloc.c, src/ldiv.c, src/getopt_long.c:
862
+ VC6 compiler fixes reported by shooshx@users.sourceforge.net
863
+
864
+ 2004-01-09 verdammelt <verdammelt@ix>
865
+
866
+ * configure.in, NEWS, ChangeLog: New Version
867
+ (fixing distribution errors)
868
+
869
+ * Makefile.am:
870
+ setting to gnu style since gnits style does not like the 1.2.3.1 style
871
+ version number
872
+
873
+ * tests/cmdline/version.baseline:
874
+ updating version baseline for new version
875
+
876
+ * doc/tnef.1.in:
877
+ Updates to clarify purpose of tnef program. The original text seemed
878
+ to imply that tnef operated somehow upon the RTF markup data contained
879
+ in a MS-TNEF attachment (it does not address the RTF markup, but only
880
+ the contained attached files).
881
+
882
+ * tests/files/datafiles/Makefile.am, tests/files/baselines/Makefile.am:
883
+ triples files were missing from distribution.
884
+
885
+ 2003-12-24 Mark Simpson <verdammelt@ix>
886
+
887
+ * configure.in, NEWS, ChangeLog: Release v1.2.3
888
+ New version
889
+
890
+ * tests/files/datafiles/triples.tnef:
891
+ * tests/files/datafiles/triples.list:
892
+ * tests/files/baselines/triples.baseline:
893
+ * tests/files/triples.test:
894
+ * tests/files/Makefile.am:
895
+ * tests/cmdline/version.baseline:
896
+ * tests/cmdline/maxsize.baseline:
897
+ maxsize and triplet printing tests
898
+
899
+ * src/tnef.c (decode_mapi):
900
+ handling szMAPI_UNSPECIFIED like szMAPI_BINARY etc.
901
+
902
+ 2003-06-17 Mark Simpson <damned@theworld.com>
903
+
904
+ * TODO: New items in TODO list.
905
+
906
+ * tests/files/Makefile.am:
907
+ * tests/files/triples.test:
908
+ * tests/files/baseline/triples.baseline:
909
+ * tests/files/datafiles/triples.list:
910
+ * tests/files/datafiles/triples.tnef:
911
+ New test for dumping of szTRIPLES data.
912
+
913
+ * src/tnef.c (dump_attr): Adding decoding of szTRIPLE type for
914
+ dumping.
915
+
916
+ * src/tnef.h: Copyright header change.
917
+
918
+ 2003-05-22 Mark Simpson <damned@theworld.com>
919
+
920
+ * doc/www/htdocs/Makefile.am:
921
+ * doc/www/htdocs/index.html.in:
922
+ * doc/www/htdocs/index.html:
923
+ Removed index.html.in and checked in index.html. Will use Id CVS
924
+ keyword instead of 'building' the file to put the date in.
925
+
926
+ 2003-05-17 Mark Simpson <damned@theworld.com>
927
+
928
+ * Makefile.am:
929
+ * configure.in:
930
+ * doc/Makefile.am:
931
+ * doc/www/.cvsignore:
932
+ * doc/www/Makefile.am:
933
+ * doc/www/cgi-bin/.cvsignore
934
+ * doc/www/cgi-bin/Makefile.am
935
+ * doc/www/htdocs/.cvsignore
936
+ * doc/www/htdocs/Makefile.am
937
+ * doc/www/htdocs/index.html
938
+ * doc/www/htdocs/style.css
939
+ First pass primitive web site for TNEF. This is to be installed
940
+ at tnef.sourceforge.net
941
+
942
+ * doc/.cvsignore:
943
+ * src/.cvsignore:
944
+ * src/baseline.h:
945
+ * src/malloc.c:
946
+ These files had DOS line-endings. Switched to Unix line endings.
947
+
948
+ 2003-05-16 Mark Simpson <damned@theworld.com>
949
+
950
+ * doc/tnef.1.in:
951
+ * src/alloc.c:
952
+ * src/alloc.h:
953
+ * src/main.c:
954
+ * src/path.c:
955
+ * src/strdup.c:
956
+ * src/tnef.c:
957
+ * tests/cmdline/Makefile.am:
958
+ * tests/cmdline/help.baseline:
959
+ * tests/cmdline/maxsize.baseline:
960
+ * tests/cmdline/maxsize.test:
961
+ New command line option -x SIZE | --maxsize=SIZE. New allocation
962
+ functions to use allocation limit given by these new command line
963
+ switches. This can be used by the user to protect against
964
+ nefarious TNEF files.
965
+
966
+ * doc/tnef.1.c:
967
+ * src/main.c:
968
+ * tests/cmdline/help.baseline:
969
+ Removed deprecated command line options.
970
+
971
+ * src/tnef.c:
972
+ * tests/cmdline/debug.baseline:
973
+ * tests/file/MAPI_ATTACH_DATA_OBJ.baseline:
974
+ * tests/file/MAPI_OBJECT.baseline:
975
+ * tests/file/data-before-name.baseline:
976
+ * tests/file/long-filename.baseline:
977
+ * tests/file/missing-filenames.baseline:
978
+ * tests/one-file.baseline:
979
+ * tests/rtf.baseline:
980
+ * tests/two-files.baseline:
981
+ Added length to debug attribute output. Tweaked MAPI attribute
982
+ debug output.
983
+
984
+ 2003-04-28 Mark Simpson <damned@theworld.com>
985
+
986
+ * Release 1.2.1:
987
+
988
+ * News:
989
+ * configure.in:
990
+ New version.
991
+
992
+ 2003-03-30 Mark Simpson <damned@theworld.com>
993
+
994
+ * src/tnef.c (copy_date_from_attr, dump_attr, dump_mapi_attr):
995
+ get_[tnef|mapi]_[name|type]_str return allocated buffer. Must
996
+ call FREE.
997
+
998
+ * src/tnef.c (dump_mapi_attr): szMAPI_CLSID must be printed out
999
+ carefully.
1000
+
1001
+ * src/tnef.c (decode_mapi): no longer using memove for integer
1002
+ type objects (sz_MAPI_SHORT, szMAPI_INT &c.). this fixes an
1003
+ endian problem. (bug: 712371).
1004
+
1005
+ 2003-03-06 Mark Simpson <damned@theworld.com>
1006
+
1007
+ * tests/cmdline/*.test:
1008
+ * tests/cmdline/*.baseline:
1009
+ * tests/files/*.test:
1010
+ * tests/files/*.baseline:
1011
+ * tests/files/file-utils.sh:
1012
+ * tests/util.sh:
1013
+ Update scripts and baselines to use and expect $srcdir for all
1014
+ paths. (bug: 698111)
1015
+
1016
+ 2003-03-02 Mark Simpson <damned@theworld.com>
1017
+
1018
+ * Release 1.2.0:
1019
+
1020
+ * News:
1021
+ * configure.in:
1022
+ New version
1023
+
1024
+ * AUTHORS: Moved thanks message to THANKS file.
1025
+
1026
+ * THANKS: New file to keep gnits checking happy.
1027
+
1028
+ * Makefile.am (AUTOMAKE_OPTIONS): Changed to gnits.
1029
+
1030
+ * src/tnef.c (dump_mapi_attr): Dumping szMAPI_OBJECT like
1031
+ sz_MAPI_BINARY so that the data is dumped, not the pointer to the
1032
+ data. Dumping the pointer value causes tests to fail randomly as
1033
+ the address changes between runs.
1034
+
1035
+ * tests/*: Automated tests for command line arguments and data
1036
+ files now added to tests directory. Using automake's test
1037
+ facility to run shell scripts. They are organized into two
1038
+ subdirectories. One for command line parameter testing/general
1039
+ features and the other for different sorts of data files. Many
1040
+ new files were added.
1041
+
1042
+ 2003-02-27 Mark Simpson <damned@theworld.com>
1043
+
1044
+ * Release 1.1.5:
1045
+ Code Cleanup
1046
+ Help & Copyright statement cleanup
1047
+ Inclusion of MAPI_OBJECT test file
1048
+ Correction to MacOSX gettext link error.
1049
+
1050
+ 2002-12-10 Mark Simpson <damned@theworld.com>
1051
+
1052
+ * Release 1.1.4:
1053
+
1054
+ * News:
1055
+ * configure.in:
1056
+ New version
1057
+
1058
+ * INSTALL:
1059
+ * mkinstalldirs:
1060
+ * install-sh:
1061
+ Updated version.
1062
+
1063
+ * src/malloc.c: Adding simple fixed malloc implementation to cover
1064
+ case that AC_FUNC_MALLOC test in configure.in
1065
+
1066
+ * src/tnef.c (dump_mapi_attr): Adding new types to dump function.
1067
+ (decode_mapi): Handling szMAPI_OBJECT type.
1068
+ (file_add_mapi_attrs): Handling MAPI_ATTACH_DATA_OBJ.
1069
+
1070
+ 2002-10-27 Mark Simpson <damned@theworld.com>
1071
+
1072
+ * Release 1.1.3:
1073
+
1074
+ * News:
1075
+ * configure.in:
1076
+ New version
1077
+
1078
+ * src/getopt_long.c (getopt_long): Editing this copied code so
1079
+ that when it is actually uesd it will work!
1080
+
1081
+ * src/basename.h, src/alloc.h, src/path.h: including config.h
1082
+
1083
+ * src/basename.h: always declare basename prototype.
1084
+
1085
+ 2002-09-15 Mark Simpson <damned@theworld.com>
1086
+
1087
+ * lisp/*
1088
+ Nearly functionally complete.
1089
+
1090
+ 2002-09-12 Mark Simpson <damned@theworld.com>
1091
+
1092
+ * config.h.in: removed this generated file from the source tree.
1093
+ Regenerate with autoheader.
1094
+
1095
+ * configure.in: Removed unnecessary AC_FUNC_STAT check (which
1096
+ caused problems on Mac OSX). Also removed old AM_PROG_CC_STDC
1097
+ check. (fixes bug 608075)
1098
+
1099
+ * tnef.spec.in (Packager): Fixing typo which kept
1100
+ PACKAGE_BUGREPORT from being expanded.
1101
+
1102
+ * doc/tnef.1, doc/tnef.1.in:
1103
+ Using configured bug reporting address in man page. Removed the
1104
+ old tnef.1 file.
1105
+
1106
+ * lisp: first version of a TNEF lisp library. Bare-bones
1107
+ functionality, can read in a an entire TNEF file but doesn't do
1108
+ anything with it yet.
1109
+
1110
+ * src, src/Makefile.am: renamed names.data and types.data to
1111
+ tnef-names.data and tnef-types.data respectively.
1112
+
1113
+ 2002-09-05 Mark Simpson <damned@theworld.com>
1114
+
1115
+ * Release v1.1.2:
1116
+
1117
+ * News:
1118
+ * configure.in:
1119
+ New version.
1120
+
1121
+ * tests/MAPI_ATTACH_DATA_OBJ.tnef: new test file for bug fixed.
1122
+
1123
+ 2002-09-03 Mark Simpson <damned@theworld.com>
1124
+
1125
+ * src/tnef.c (file_add_mapi_attrs): Fixing bug found by Asbjorn
1126
+ Pettersen <AsbjornPettersen@dualog.no>. This bug occurs when
1127
+ MAPI_ATTACH_DATA_OBJ is where the data for the file is defined
1128
+ instead of attATTACHDATA;
1129
+
1130
+ * src/tnef.c: Removal of unecessary unistd.h
1131
+ (courtesy of Asbjorn Pettersen <AsbjornPettersen@dualog.no>)
1132
+
1133
+ * <misc files>
1134
+ Updated copyright statements. Misc changes for newer version of
1135
+ automake/autoconf &c.
1136
+
1137
+ 2001-09-18 Mark Simpson <damned@world.std.com>
1138
+
1139
+ * Release v1.1.1:
1140
+
1141
+ * NEWS:
1142
+ * configure.in:
1143
+ New version.
1144
+
1145
+ * tnef.spec.in: Small improvements.
1146
+
1147
+ * doc/Makefile.am, doc/tnef.1: man page renamed to tnef.1 to put
1148
+ it into the correct manual page section.
1149
+
1150
+ * src/strdup.c (strdup): Fixing off by one error.
1151
+
1152
+ 2001-08-13 Mark Simpson <damned@world.std.com>
1153
+
1154
+ * Release v1.1:
1155
+
1156
+ * NEWS:
1157
+ * configure.in:
1158
+ New version.
1159
+
1160
+ * src/main.c: Disallowing -w with reading a file from stdin.
1161
+
1162
+ * src/alloc.c (MALLOC):
1163
+ Modified to not produce error if size is zero. Some libc
1164
+ libraries return NULL if size is zero.
1165
+
1166
+ * doc/Makefile.am:
1167
+ * doc/tnef.3:
1168
+ New file courtesy Clark Morgan <cmorgan@aracnet.com>
1169
+
1170
+ 2001-07-17 Mark Simpson <damned@world.std.com>
1171
+
1172
+ * configure.in:
1173
+ Checking for ldiv.
1174
+
1175
+ * tnef.spec.in:
1176
+ Cleanup and addition of doc.
1177
+
1178
+ * src/ldiv.c, src/ldiv.h:
1179
+ New files to be compiled if ldiv is not defined.
1180
+
1181
+ * src/tnef.c:
1182
+ Cleaning up a few memory leaks.
1183
+
1184
+ 2001-04-07 Mark Simpson <damned@world.std.com>
1185
+
1186
+ * Release 1.0.1:
1187
+
1188
+ * NEWS:
1189
+ * configure.in:
1190
+ New version.
1191
+
1192
+ * src/tnef.c:
1193
+ Fixing problem with directory usage. When a
1194
+ MAPI_ATTACH_LONG_FILENAME is found TNEF must prepend the directory
1195
+ to it just like when it finds a attATTACHTITLE.
1196
+
1197
+ Adding an ident line.
1198
+
1199
+ 2001-03-17 Mark Simpson <damned@world.std.com>
1200
+
1201
+ * Release 1.0:
1202
+ * NEWS:
1203
+ * configure.in:
1204
+
1205
+ * src/tnef.c:
1206
+ * src/tnef.h:
1207
+ * src/mkdata.awk:
1208
+ * src/mapi-names.data:
1209
+ * src/mapi-types.data:
1210
+ * src/Makefile.am:
1211
+ * src/.cvsignore:
1212
+ New support for MAPI attributes which are inside of TNEF
1213
+ attributes. This allows for getting the long filenames.
1214
+
1215
+ * doc/file-format.tex:
1216
+ Now includes information about MAPI types.
1217
+
1218
+ 2001-01-17 Mark Simpson <damned@world.std.com>
1219
+
1220
+ * Release v0.16
1221
+
1222
+ * src/main.c (USAGE, parse_cmdline)
1223
+ * src/tnef.c (NUMBER_FILES, find_free_number, write_file):
1224
+ * src/tnef.h:
1225
+ New numbered backup feature (idea and code from:
1226
+ Jean-Jacques Michel <jjmichel@linbox.com>)
1227
+
1228
+ 2000-11-15 Mark Simpson <damned@world.std.com>
1229
+
1230
+ * configure.in:
1231
+ New --enable-debug switch
1232
+ Using AC_REPLACE_FUNCS to check for basename
1233
+
1234
+ * acinclude.m4: New AC_DEBUG_COMPILE macro. Implementation of
1235
+ --enable-debug in configure script.
1236
+
1237
+ * src/tnef.c (write_file, rename_file, decode_attachment): Changes
1238
+ needed because basename does not return a newly allocated
1239
+ pointer. It returns a pointer into the string it was passed. Do
1240
+ not free this string.
1241
+
1242
+ * src/path.c (concat_fname): Function is now more robust.
1243
+ (basename): Removed this function to basename.c
1244
+
1245
+ * src/basename.c: New file containing my implementation of
1246
+ basename (based upon glibc). Will be built only on platforms
1247
+ without one of its own.
1248
+
1249
+ * src/strdup.c: Tweaked my implementation after seeing the one in
1250
+ glibc.
1251
+
1252
+ * .cvsignore: Now ignoring the distribution
1253
+
1254
+ * src/alloc.c:
1255
+ * src/alloc.h:
1256
+ * src/path.c:
1257
+ * src/path.h:
1258
+ * src/main.c:
1259
+ * src/sizes.h:
1260
+ * src/strdup.h:
1261
+ * src/tnef.c:
1262
+ * src/tnef.h:
1263
+ Extra comments.
1264
+
1265
+ * src/path.c:
1266
+ * src/path.h:
1267
+ Conditional compilation of basename. This is now checked for in
1268
+ the configure script.
1269
+
1270
+ 2000-10-27 Mark Simpson <damned@world.std.com>
1271
+
1272
+ * Release 0.15
1273
+
1274
+ * configure.in: Fixing int sizeof check to remove warning.
1275
+ Checking for vprintf. Addition of maintainer mode.
1276
+
1277
+ * src/tnef.h: Addition of overwrite and confirmation
1278
+ functionality.
1279
+
1280
+ * src/tnef.c: Addition of overwite and confirmation
1281
+ functionality. Moving of debug output into a seperate
1282
+ function. Moving of writing and renaming files into seperate
1283
+ files.
1284
+
1285
+ * src/main.c: Changes to add two new flags: --overwite and
1286
+ --interactive/--confirmation/-w.
1287
+
1288
+ * Makefile.am (AUTOMAKE_OPTIONS): Setting up defaults for automake
1289
+ runs.
1290
+
1291
+ 2000-10-06 Mark Simpson <damned@world.std.com>
1292
+
1293
+ * Release v0.14
1294
+
1295
+ * configure.in: Check for executable extension.
1296
+ Add --enable-warnings options and removing unused --enable-debug.
1297
+ Add checks for strrchr, memmove, and memory.h
1298
+
1299
+ * acinclude.m4: New file with definitin of AC_COMPILER_WARNING
1300
+ used by ./configure --enable-warnings
1301
+
1302
+ * src/tnef.c, src/tnef.h, src/main.h:
1303
+ New command line argument handling.
1304
+ New command line argument: --use-paths.
1305
+ Corrected pathname security bug.
1306
+
1307
+ * src/alloc.c, src/alloc.h, src/path.c, src/path.h:
1308
+ New files breaking code out of tnef.c
1309
+
1310
+ * src/Makefile.am: Removed CFLAGS so default is used instead.
1311
+
1312
+ 2000-09-26 Mark Simpson <damned@world.std.com>
1313
+
1314
+ * Release v0.13
1315
+
1316
+ 2000-09-23 Mark Simpson <damned@world.std.com>
1317
+
1318
+ * tnef.spec.in: New file to allow creation of rpm files
1319
+
1320
+ * src/tnef.c, src/main.c: -C option same as -d, -t option same as
1321
+ -l,-n. -v option like tar now. --debug is heavy output (like
1322
+ --verbose was previously).
1323
+ (some changes provided by Ambrose Li <acli@mingpaoxpress.com>
1324
+
1325
+ * minor spelling corrections.
1326
+
1327
+ 2000-04-27 Mark Simpson <damned@world.std.com>
1328
+
1329
+ * Release v0.12
1330
+
1331
+ * src/Makefile.am (CFLAGS): using -g
1332
+
1333
+ * src/tnef.c (decode_attachment): Fixed so that it can handle the
1334
+ filename to come after the attachment data... fix curtesy of:
1335
+ "Adam L. Gibson" <Adam@PTM.com>
1336
+
1337
+ 2000-03-23 Mark Simpson <damned@world.std.com>
1338
+
1339
+ * Release v0.11
1340
+
1341
+ 2000-03-22 Mark Simpson <damned@world.std.com>
1342
+
1343
+ * configure.in: Checking for getopt_long function.
1344
+
1345
+ * src/tnef.c: Inserting byte-order fix from Nathan Neulinger
1346
+ <nneul@umr.edu>. Fixes date display problem.
1347
+
1348
+ * src/main.c: Using new getopt_long.h when needed.
1349
+
1350
+ * src/getopt_long.c, src/getopt_long.h: Stole these getopt and
1351
+ getopt_long functions from GNUEmacs 20.5.1 and put them in here
1352
+ with minor mods so that we can build on platforms without a
1353
+ builtin getopt_long function.
1354
+
1355
+ * tests/Makefile.am, tests/long-filename.tnef,
1356
+ tests/missing-filenames.tnef: More test files.
1357
+
1358
+ 2000-02-16 Mark Simpson <damned@world.std.com>
1359
+
1360
+ * Release v0.10
1361
+
1362
+ * src/tnef.c:
1363
+ Replace calls to malloc with new Malloc function which produces an
1364
+ error and aborts if memory allocation fails.
1365
+ (dump_attr): Temporary fix for Solaris problem with date data.
1366
+ (decode_attachment): Make up a filename if one is not given in the
1367
+ tnef file.
1368
+
1369
+ 1999-12-26 Mark Simpson <damned@world.std.com>
1370
+
1371
+ * Release v0.9
1372
+
1373
+ * src/tnef.c (decode_attachment): Undoing previous changes
1374
+ concerning attATTACHMENT type. Found that this did not work
1375
+ reliably and that the changes were incorrect as well.
1376
+
1377
+ 1999-12-04 Mark Simpson <damned@world.std.com>
1378
+
1379
+ * Release v0.8
1380
+
1381
+ * src/tnef.c (decode_attachment): Now watches for attATACHMENT
1382
+ records. These contain the real filename of the file whereas the
1383
+ attATTACHTITLE is a 'short' filename. Keeping both ways right now
1384
+ just in case. Not sure what else is in the attATTACHMENT buffer
1385
+ though.
1386
+
1387
+ 1999-10-26 Mark Simpson <damned@world.std.com>
1388
+
1389
+ * Release v0.7.2
1390
+
1391
+ * src/Makefile.am:
1392
+ * src/main.c:
1393
+ * src/tnef.c:
1394
+ * src/tnef.h:
1395
+ Moving main functions and command line parsing to separate file.
1396
+
1397
+ * doc/Makefile.am:
1398
+ * doc/file-format.tex:
1399
+ * doc/.cvsignore:
1400
+ Replacing text file with LaTeX file describing file format.
1401
+
1402
+ * Release v0.7.1
1403
+
1404
+ * TODO: Many new tasks.
1405
+
1406
+ * tests/Makefile.am:
1407
+ * tests/one-file.tnef:
1408
+ * tests/rtf.tnef:
1409
+ * tests/two-files.tnef:
1410
+ Replaced/renamed test files.
1411
+
1412
+ * src/tnef.c: Moved strings of copyright and no-warranty statement
1413
+ to top of file for clarity.
1414
+
1415
+ * src/mkdata.awk:
1416
+ * src/names.data:
1417
+ * src/strdup.c:
1418
+ * src/strdup.h:
1419
+ * src/tnef.c:
1420
+ * src/types.data:
1421
+ Copyright fix. Comment Line added.
1422
+
1423
+ 1999-10-14 Mark Simpson <simpson@world.std.com>
1424
+
1425
+ * ChangeLog: v0.7
1426
+
1427
+ * configure.in: New --enable-debug-build switch. Now checking for
1428
+ int size so we can create appropriate typedefs
1429
+
1430
+ * src/Makefile.am:
1431
+ * src/mkdata.awk:
1432
+ * src/sizes.h:
1433
+ * src/tnef.c:
1434
+ * src/tnef.h:
1435
+ * src/types.data:
1436
+ Typedef-ing int types for the sizes we need and using them.
1437
+ checksum now works because of this.
1438
+
1439
+ * acconfig.h: Added DEBUG and NDEBUG for the --enable-deubug-build
1440
+ switch to configure.
1441
+
1442
+ * Makefile.am:
1443
+ * doc/.cvsignore:
1444
+ * doc/Makefile.am:
1445
+ * tests/.cvsignore:
1446
+ * tests/Makefile.am:
1447
+ doc and tests directory now being 'built' and included in
1448
+ distribution.
1449
+
1450
+ 1999-10-13 Mark Simpson <simpson@world.std.com>
1451
+
1452
+ * Release v0.6
1453
+
1454
+ * Makefile.am: add BUGS to EXTRA_DIST
1455
+
1456
+ * TODO: more to do
1457
+
1458
+ * BUGS, README: creating this file.
1459
+
1460
+ * src/tnef.c (parse_cmdline): Fixed copyright statement for
1461
+ --version.
1462
+
1463
+ 1999-10-12 Mark Simpson <simpson@world.std.com>
1464
+
1465
+ * Release v0.5
1466
+
1467
+ * src/tnef.c (dump_attr): Now handling szSHORT and szLONG and
1468
+ szTEXT.
1469
+ (usage, parse_cmdline): New switches -l/--list to simply list
1470
+ contents (currently the same as -n/--dry_run. -f/--file no longer
1471
+ mandatory, -f/--file can accept '-' to mean stdin.
1472
+
1473
+ * Release v0.4
1474
+
1475
+ * src/tnef.c: Extern decl of tempnam to quiet compiler.
1476
+ (dump_attr): dump_attr can now handle dates.
1477
+ (check_checksum): #if 0 out this function for now until it works.
1478
+ (decode_attachment): Change in attribute name: attFILENAME becomes
1479
+ attATTACHTITLE.
1480
+ (decode_attachment, parse_cmdline): New -n option allows for tnef
1481
+ to do nothing other than read the file. If -n was given it will
1482
+ not write the files.
1483
+
1484
+ * src/tnef.h: Adding date structure.
1485
+
1486
+ * src/names.data: Complete listing of attributes
1487
+
1488
+ * src/Makefile.am: Still working on a good way to get names.[ch]
1489
+ and types.[ch] built and linked but not have them in the dist.
1490
+ This way will work: $(tnef_OBJECTS) depends upon the
1491
+ {names,types}.o and BUILT_SOURCES contains names.[ch] and
1492
+ types.[ch] and most importantly tnef_LIBADD has {names,types}.o
1493
+
1494
+ * TODO: adding some good ideas.
1495
+
1496
+ * tests/two-files: replaced with tnef file that actually _has_ two
1497
+ files in it.
1498
+
1499
+ 1999-10-09 Mark Simpson <damned@world.std.com>
1500
+
1501
+ * Release v0.3
1502
+
1503
+ * TODO: Adding some ideas here.
1504
+
1505
+ * configure.in: Looking for awk and strdup, version update
1506
+
1507
+ * src/tnef.c:
1508
+ * src/tnef.h: Big changes to use generated lists of names and
1509
+ types, changes to flow of code, less specialized handling when we
1510
+ just don't care. All verbose printing done in one function.
1511
+ New -d/--directory option for specifying where to put extracted
1512
+ files.
1513
+
1514
+ * src/.cvsignore: Ignore generated files
1515
+
1516
+ * src/Makefile.am: Changes to use generated files
1517
+
1518
+ * src/mkdata.awk: AWK script to create foo.[ch] out of foo.data
1519
+
1520
+ * src/strdup.c:
1521
+ * src/strdup.h: New files defining strdup in case we try to build
1522
+ on a system without it.
1523
+ * src/names.data:
1524
+ * src/types.data: New files containing data to create the
1525
+ names.[ch] and types.[ch] files. These contain the #define's for
1526
+ names and types, and also code to get the string equivalents.
1527
+ * doc/grammer: new file defining the grammer of a TNEF Stream.
1528
+
1529
+ * src/tnef.c:
1530
+ * src/tnef.h:
1531
+ changing #define'd names
1532
+
1533
+ 1999-10-06 Mark Simpson <damned@world.std.com>
1534
+
1535
+ * src/tnef.c: Removed static buffers
1536
+
1537
+ * tests/one-file:
1538
+ * tests/rtf:
1539
+ * tests/two-files:
1540
+ Test files
1541
+
1542
+ * src/Makefile.am: header file needed for distribution of source
1543
+
1544
+ * configure.in: Checking for install program and size_t decl.
1545
+
1546
+ * AUTHORS: Initial content
1547
+
1548
+ * .cvsignore:
1549
+ * src/.cvsignore: ignoring more files
1550
+