File: ChangeLog

package info (click to toggle)
txt2pdbdoc 1.4.2-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 268 kB
  • ctags: 97
  • sloc: ansic: 526; perl: 298; sh: 190; makefile: 54
file content (342 lines) | stat: -rw-r--r-- 6,984 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
Changes
=======

*******************************************************************************
1.4.2
*******************************************************************************

This version fixes compiling under FreeBSD.

CHANGES, file-by-file
---------------------

* configure.in

	1. Changed version to "1.4.2".
	2. Removed AC_CHECK_SIZEOF(unsigned char) since it's always 1 by
	   definition.

* palm.h

	1. Removed SIZEOF_UNSIGNED_CHAR since it's always 1 by definition.

* txt2pdbdoc.c

	1. Added "#include <sys/types.h>" before "#include <netinet/in.h>".


*******************************************************************************
1.4.1
*******************************************************************************

This version fixes the installation of manual pages.  D'oh!

CHANGES, file-by-file
---------------------

* configure.in

	1. Changed version to "1.4.1".

* doc.4
* html2pdbtxt.1
* pdbtxt2html.1
* txt2pdbdoc.1

	1. Moved the manual pages to the top-level to fix the installation.

* Makefile.am

	1. Changed man_MANS to refer to the manual pages at the top
	   level to fix their installation.


*******************************************************************************
1.4
*******************************************************************************

This version doesn't add anything major.  It's mostly just a release that
cleans up some stuff since I last touched this in 1998.


NEW FEATURES
------------

* Now putting current date/time into generated PDB file.
* Added complete read/write error-checking.
* Made exit status codes more specific and documented them.


CHANGES, file-by-file
---------------------

* bootatrap

	1. Added for package maintainer.

* Changes
* ChangeLog

	1. ChangeLog replaces Changes since that's what the autoconf
	   stuff wants.

* config/config.mk

	1. Removed since now using the standard autoconf stuff.

* config/man.mk

	1. Removed since I'm a novice at the autoconf stuff and I don't
	   know how to add a rule for building text versions of manual
	   pages.

* configure.in

	1. New file for autoconf stuff.

* html2pdbtxt
* pdbtxt2html

	1. Updated version to 1.4.

* INSTALL

	1. Updated instructions for configure script.

* install-sh

	1. Removed this since automake supplies it.

* Makefile
* Makefile.am

	1. Makefile.am replaces Makefile for the autoconf/automake stuff.

* man/Makefile
* man/man1/Makefile
* man/man4/Makefile

	1. Removed since now handled by top-level Makefile.

* man/man1/txt2pdbdoc.1

	1. Added more specific EXIT STATUS section.

* man/man4/doc.4

	1. Removed pdb(4) since Palm now documents the PDB format.
	2. Added reference to Palm PDB format document.

* man/man4/pdb.4

	1. Removed since Palm now documents the PDB format.

* palm.h

	1. Created this file containing Palm OS declarations.

* test-sh

	1. Added test script.

* txt2pdbdoc.c

	1. Moved Palm OS stuff to palm.h.
	2. Removed swap_* functions and now using htons(), et al.
	3. Added more exit status codes.
	4. Made all GET/PUT macros do error checking.
	5. Added new SEEK_REC_ENTRY macro.
	6. Put correct date/time into generated PDB file.
	7. Removed zero_fill() in favor of bzero().
	8. Added read_error() and write_error() functions.
	9. s/PDB_HEADER_SIZE/DatabaseHdrSize/
	A. s/PDB_RECORD_HEADER_SIZE/RecordEntrySize/
	B. Updated version to 1.4.
	C. Removed #define VERSION; version now specified in configure.in.
	D. Now using PACKAGE (specified in configure.in).
	E. Cleaned up usage message.


*******************************************************************************
1.3
*******************************************************************************

* The only real difference in this version is that I updated my e-mail address
  in all the files.


CHANGES, file-by-file
---------------------

* html2pdbtxt

	1. For bookmarks, removed extra blank line.

* man/man1/html2pdbtxt.1
* man/man1/pdbtxt2html.1
* man/man1/txt2pdbdoc.1
* manman4/doc.4
* man/man4/pdb.4
* README

	1. s/pjl@best.com/pauljlucas@mac.com/

* txt2pdbdoc.c

	1. Updated version to 1.3.


*******************************************************************************
1.2.1
*******************************************************************************

BUG FIXES
---------

* txt2pdbdoc fails to determine the proper byte-swapping algorithm on
  machines with 64-bit longs (such as DEC Alphas).
 
  (This bug fix will be known as bug fix 64L.)


CHANGES, file-by-file
---------------------

* html2pdbtxt

	1. Changed version number to 1.2.1.

* INSTALL

	1. Added "Hardware prerequisites" section.

	2. Added instructions for html2pdbtxt and pdbtxt2html.

* install-sh

	1. Removed reference to SWISH++.

* Makefile

	1. Performed following substitution:

		s/CFLAGS= $(CCFLAGS)/CFLAGS= -O/

* pdbtxt2html

	1. Changed version number to 1.2.1.

* README

	1. Added html2pdbtxt.

	2. Added a tip for using lynx.

* txt2pdbdoc.c

	1. Added:
	
		#include <limits.h>

	  for bug fix 64L.

	2. Added preprocessor code to determine which integral types
	   are the right sizes for bug fix 64L.

	3. Changed version number to 1.2.1.


*******************************************************************************
1.2
*******************************************************************************

NEW FEATURES
------------

* Added script to convert from HTML to Doc text.

  (This feature will be known as feature HTML2DOC.)

* Added ability to make man pages in PDF format.

  (This feature will be known as feature PDF.)


CHANGES, file-by-file
---------------------

* config/man.mk

	1. Added PDF targets for feature PDF.

* html2pdbtxt

	1. Added this script for feature HTML2DOC.

* Makefile

	1. Added html2pdbtxt target for feature HTML2DOC.

	2. Performed following substitution:

		s/$(STRIP) txt2pdbdoc/$(STRIP) $(BUILD_TARGET)/

* man/man1/html2pdbtxt.1

	1. Added this man page for feature HTML2DOC.

* man/man1/Makefile

	1. Added PDF targets for feature PDF.

	2. Added html2pdbtxt target for feature HTML2DOC.

* man/man4/Makefile

	1. Added PDF targets for feature PDF.

* man/man1/pdbtxt2html.1

	1. Added description corresponding to pdbtxt2html change item
	   #1.

	2. Added "ftp" URL as being recognized.

	3. Changed URL to refer to RFC 1630.

	4. Added missing author information.

* pdbtxt2html

	1. Added -v option to print the version number and exit.

* txt2pdbdoc.c

	1. Changed version number to 1.2.


*******************************************************************************
1.1
*******************************************************************************

BUG FIXES
---------

* There was an off-by-1 bug when creating document names.

  (This bug fix will be known as bug fix OB1.)


CHANGES, file-by-file
---------------------

* txt2pdbdoc.c

	1. In encode(), fixed OB1.


*******************************************************************************
1.0
*******************************************************************************

* Initial release.