-
Notifications
You must be signed in to change notification settings - Fork 1
/
vera.texi
1430 lines (1122 loc) · 39.3 KB
/
vera.texi
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\input texinfo
@c %**start of header
@setfilename vera.info
@settitle V.E.R.A@. --- Virtual Entity of Relevant Acronyms
@setchapternewpage on
@c %**end of header
@c Last edited: 03 June 2006
@c Not used @. cause it results in a 'registered trademark'
@c sign in my Info environment.
@c The following seems not to work in TeX with my emTeX for OS/2
@c Have set @noindent in the textual chapters
@c @paragraphindent none
@paragraphindent 0
@c Variables that (may) change with each edition
@set EDITION Edition 1.17
@set NONGNUEDITION 7.2
@set RELEASE June 2006
@set ACTYEAR 2006
@set ACRONYMCOUNT 11024
@set FOLDOCURL http://foldoc.org/ (as of June 2006)
@set ACTMAINTAINER Oliver Heidelbach
@set MAINTAINEMAIL <ohei [at] snafu . de>
@set AUTHOREMAIL <ohei [at] snafu . de>
@c End of variables
@dircategory Information
@direntry
* VERA: (vera). Virtual Entity of Relevant Acronyms
@end direntry
@ifinfo
This is a special GNU edition of V.E.R.A.,
a list dealing with computational acronyms.@*
Copyright @copyright{} 1993/@value{ACTYEAR} Oliver Heidelbach@*
@value{AUTHOREMAIL} @*
<ohei [at] snafu de>
Please send corrections to @value{ACTMAINTAINER} @value{MAINTAINEMAIL}.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with
no Back-Cover Texts.
A copy of the license is included in the section entitled ``GNU FDL''.
Within the above restrictions the distribution of this
document is explicitly encouraged and I hope you'll find
it of some value.
This dictionary has nothing to do with Systems Science Inc.
or its products.
@end ifinfo
@titlepage
@sp 10
@c The title is printed in a large font.
@title V.E.R.A.
@subtitle @b{Virtual Entity of Relevant Acronyms}
@sp 1
@subtitle An overview of
@subtitle common and not so common acronyms
@subtitle in the field of computing
@sp 1
@subtitle @value{EDITION} (Texinfo)
@subtitle Released @value{RELEASE}
@c The following two commands start the copyright page.
@page
@vskip 0pt plus 1filll
Special GNU edition of V.E.R.A. @*
Released @value{RELEASE} @*
Currently maintained by @value{ACTMAINTAINER} @value{MAINTAINEMAIL}
@sp 2
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with
no Back-Cover Texts.
A copy of the license is included in the section entitled ``GNU FDL''.
This dictionary has nothing to do with Systems Science Inc.
or its products.
Copyright @copyright{} 1993/@value{ACTYEAR} Oliver Heidelbach
@end titlepage
@iftex
@headings off
@everyheading @thistitle @| @| page @thispage
@everyfooting @value{EDITION} @| @| @today{}
@end iftex
@node Top, 0, (dir), (dir)
@c node-name, next, previous, up
@iftex
@chapter Foreword to the printed edition
@cindex Foreword to the printed edition
@cindex Printed edition, Foreword to the
@cindex Structure of this document (printed version)
@noindent
@strong{V.E.R.A. --- Virtual Entity of Relevant Acronyms}
@noindent
If you had decided to print this document with @TeX{}, you
are probably missing the introduction normally found at this place.
Because this document is mainly designed to be used online, the
important information, i.e. the acronym list, comes first.
@noindent
Please see @ref{About}, for some kind of introduction to this document.
You will find more information in the following chapters:
@table @asis
@item @ref{Format}.
The systematic approach of the acronym list.
@item @ref{Acronym}.
A definition of the word "acronym".
@item @ref{History}
News, changes, requests and other release related information
@item @ref{Acknowledgments}.
A list of contributors and other credits.
@item @ref{Disclaimer}.
Please read before printing, copying or distributing.
@item @ref{GNU FDL}.
The GNU Free Documentation License.
@end table
@noindent
The @ref{Index}, will of course be an invaluable help if you
ever should be looking for something else than an acronym.
@end iftex
@ifinfo
@cindex Online overview
@cindex Overview, Online
@strong{V.E.R.A. --- Virtual Entity of Relevant Acronyms}
@sp 2
@ref{0}. @ref{A}. @ref{B}. @ref{C}. @ref{D}.
@sp 1
@ref{E}. @ref{F}. @ref{G}. @ref{H}. @ref{I}.
@sp 1
@ref{J}. @ref{K}. @ref{L}. @ref{M}. @ref{N}.
@sp 1
@ref{O}. @ref{P}. @ref{Q}. @ref{R}. @ref{S}.
@sp 1
@ref{T}. @ref{U}. @ref{V}. @ref{W}. @ref{X}.
@sp 1
@ref{Y}. @ref{Z}.
@sp 1
@c Note: all acronyms nodes go in the first place, so that
@c Info searches do not stop at the examples nodes.
@c This may not be book-like, but is definitely more convenient.
To search for an acronym type @kbd{s ^@emph{ACRONYM}}.
@menu
* About:: What is V.E.R.A.?
* Format:: Systematic approach of the acronym list (if any)
* Acronym:: Definition of the word @emph{acronym}
* History:: News, changes, requests, @dots{}
* Acknowledgments:: List of contributors and other credits
* Disclaimer:: Please read before printing, copying or the like
* GNU FDL:: The full legalese for copying and distributing
* Help on: (info). Getting used to the Info browsing system
* Index::
@end menu
@flushright
@value{EDITION} (Texinfo)
Released @value{RELEASE}
@end flushright
@end ifinfo
@node 0, A, Top, Top
@c node-name, next, previous, up
@unnumbered --- 0 ---
@cindex 0, Acronyms beginning with
@cindex Numbers, Acronyms beginning with
@include vera.0
@node A, B, 0, Top
@c node-name, next, previous, up
@unnumbered --- A ---
@cindex A, Acronyms beginning with
@include vera.a
@node B, C, A, Top
@c node-name, next, previous, up
@unnumbered --- B ---
@cindex B, Acronyms beginning with
@include vera.b
@node C, D, B, Top
@c node-name, next, previous, up
@unnumbered --- C ---
@cindex C, Acronyms beginning with
@include vera.c
@node D, E, C, Top
@c node-name, next, previous, up
@unnumbered --- D ---
@cindex D, Acronyms beginning with
@include vera.d
@node E, F, D, Top
@c node-name, next, previous, up
@unnumbered --- E ---
@cindex E, Acronyms beginning with
@include vera.e
@node F, G, E, Top
@c node-name, next, previous, up
@unnumbered --- F ---
@cindex F, Acronyms beginning with
@include vera.f
@node G, H, F, Top
@c node-name, next, previous, up
@unnumbered --- G ---
@cindex G, Acronyms beginning with
@include vera.g
@node H, I, G, Top
@c node-name, next, previous, up
@unnumbered --- H ---
@cindex H, Acronyms beginning with
@include vera.h
@node I, J, H, Top
@c node-name, next, previous, up
@unnumbered --- I ---
@cindex I, Acronyms beginning with
@include vera.i
@node J, K, I, Top
@c node-name, next, previous, up
@unnumbered --- J ---
@cindex J, Acronyms beginning with
@include vera.j
@node K, L, J, Top
@c node-name, next, previous, up
@unnumbered --- K ---
@cindex K, Acronyms beginning with
@include vera.k
@node L, M, K, Top
@c node-name, next, previous, up
@unnumbered --- L ---
@cindex L, Acronyms beginning with
@include vera.l
@node M, N, L, Top
@c node-name, next, previous, up
@unnumbered --- M ---
@cindex M, Acronyms beginning with
@include vera.m
@node N, O, M, Top
@c node-name, next, previous, up
@unnumbered --- N ---
@cindex N, Acronyms beginning with
@include vera.n
@node O, P, N, Top
@c node-name, next, previous, up
@unnumbered --- O ---
@cindex O, Acronyms beginning with
@include vera.o
@node P, Q, O, Top
@c node-name, next, previous, up
@unnumbered --- P ---
@cindex P, Acronyms beginning with
@include vera.p
@node Q, R, P, Top
@c node-name, next, previous, up
@unnumbered --- Q ---
@cindex Q, Acronyms beginning with
@include vera.q
@node R, S, Q, Top
@c node-name, next, previous, up
@unnumbered --- R ---
@cindex R, Acronyms beginning with
@include vera.r
@node S, T, R, Top
@c node-name, next, previous, up
@unnumbered --- S ---
@cindex S, Acronyms beginning with
@include vera.s
@node T, U, S, Top
@c node-name, next, previous, up
@unnumbered --- T ---
@cindex T, Acronyms beginning with
@include vera.t
@node U, V, T, Top
@c node-name, next, previous, up
@unnumbered --- U ---
@cindex U, Acronyms beginning with
@include vera.u
@node V, W, U, Top
@c node-name, next, previous, up
@unnumbered --- V ---
@cindex V, Acronyms beginning with
@include vera.v
@node W, X, V, Top
@c node-name, next, previous, up
@unnumbered --- W ---
@cindex W, Acronyms beginning with
@include vera.w
@node X, Y, W, Top
@c node-name, next, previous, up
@unnumbered --- X ---
@cindex X, Acronyms beginning with
@include vera.x
@node Y, Z, X, Top
@c node-name, next, previous, up
@unnumbered --- Y ---
@cindex Y, Acronyms beginning with
@include vera.y
@node Z, About , Y, Top
@c node-name, next, previous, up
@unnumbered --- Z ---
@cindex Z, Acronyms beginning with
@include vera.z
@node About, Format, Z, Top
@c node-name, next, previous, up
@chapter About@dots{}
@cindex What is V.E.R.A.?
@cindex V.E.R.A., What is it?
@cindex About V.E.R.A.
@ifinfo
@strong{V.E.R.A. --- Virtual Entity of Relevant Acronyms}
@end ifinfo
@noindent
V.E.R.A. is a free list of acronyms all of which are used in the field
of computing.
@noindent
V.E.R.A. is primarily meant to be used as an online reference,
although some efforts have been taken to make its @TeX{} output
looking acceptable. However I doubt that somebody would like to print
it. The original release compiled to 250 pages.
@noindent
This edition is a special contribution to the GNU project
similar to the version @value{NONGNUEDITION} of V.E.R.A. It contains approximately
@value{ACRONYMCOUNT} acronyms.
@noindent
The idea to make V.E.R.A. available in Texinfo format came after reading
two other Info files both of which are available on the Internet, the
@emph{Standards} and the @emph{Languages} file, both dealing with
antique DEC mainframe environments and both distributed stand-alone;
that is, both are not serving as a software manual like most of Texinfo
files. I thought it would be very handy to have a list of acronyms
available while using Emacs.
@noindent
It may be considered only a very little contribution. However
I make it to express my appreciation for the GNU project and its
philosophy. This project does not only make software available free to
everyone, it also seems that it sets the only standard `everyone'
supports nowadays.
@noindent
I started V.E.R.A. around easter 1993. The ASCII version is being
posted to the German=speaking newsgroups @emph{z-netz.alt.listen} and
@emph{de.etc.lists} every three months. It is not being posted to an
international newsgroup, because the introduction as well as many
internal references are only available in German.
@noindent
Please note that the original version of V.E.R.A. is not related to the
to the Free Software Foundation or the GNU project at all.
@noindent
The list is far from being complete as dozens of new acronyms evolve
every month. Also I am not an every day Unix user, so I am pretty sure
that a lot of acronyms from the Unix world are missing. The same is true
for the Apple world. Please don't be angry if your field of computing
seems little or not represented at all. Instead please consider
contributing the missing acronyms to let other people share what you
know.
@noindent
The shift from the original format of V.E.R.A. to Texinfo format took a
whole week. Please forgive any errors which still remain. For hints
how to submit corrections or to report bugs, please see @ref{History}.
@noindent
For a more in-depth discussion of some of the more common acronyms
contained in this document you may want to consider visiting the
@emph{Free Online Dictionary of Computing (FOLDOC)}, at least if you
have access to the World Wide Web. It can be found at
@value{FOLDOCURL}.
@node Format, Acronym, About, Top
@c node-name, next, previous, up
@chapter List format
@cindex Acronyms, Common style of
@cindex Approach, Systematic
@cindex Common style of acronyms
@cindex Format used
@cindex German umlauts
@cindex List format
@cindex Systematic approach
@cindex Umlauts, German
@cindex Used format
@ifinfo
@cindex Searching for acronyms (online)
@cindex Acronyms , Searching for (online)
@strong{V.E.R.A. --- Virtual Entity of Relevant Acronyms}
@end ifinfo
@noindent
Some notes on the systematic approach of the acronym list:
@noindent
Because often acronyms are being referenced not very unique in style,
the acronyms in V.E.R.A. do not contain any special characters; only
characters and numbers are used. Please remember this, when you are
searching for acronyms.
@noindent
German umlauts are expressed with AE, ae, OE, oe, UE, ue and ss.
@noindent
Examples:
@noindent
ASN.1 = ASN1 @*
@noindent
OS/2 = OS2 @*
@noindent
DFUE, Foerderung, Grossforschungseinrichtung, @dots{}
@noindent
What is thought to be the common style can be found at the end of
the line(s) in quotation marks.
@noindent
Examples:
@table @asis
@item ASN1
Abstract Syntax Notation One (OSI), "ASN.1"
@item ATT
American Telephone and Telegraph, "AT&T"
@end table
@sp 2
@menu
* Style:: Style of the acronym expansions.
* Alternatives:: Alternative expansions.
* Explanations:: Additional explanations.
* References:: Reference tags for acronyms.
* Concatenation:: Concatenated acronyms.
* Versions:: Acronyms pointing to versions.
* File extensions:: A note on file extensions.
* Gaps:: Huh --- what is that?
@end menu
@node Style, Alternatives, Format, Format
@c node-name, next, previous, up
@section Style of the acronym expansions
@cindex Expansions, Style of
@cindex Style of expansions
@noindent
The acronym expansions basically follow their acronyms in style.
Exceptions are made if expansions are containing acronyms themselves.
This often leads to an kind of odd or even wrong orthographical style.
@noindent
Examples:
@table @asis
@item AUX
Apple UniX, "A/UX"
@item XT
eXtended Technology
@item ACL
Advanced CMOS Logic
@end table
@node Alternatives, Explanations, Style, Format
@c node-name, next, previous, up
@section Alternative expansions
@cindex Alternative expansions
@cindex Expansions, Alternative
@noindent
If alternative expansions for the same acronym are known these are
separated by a slash. However that is not true for acronyms of
basically different meanings.
@noindent
Examples:
@table @asis
@item AE
Apple Events
@item AE
Application Entity / Environment / Engineering (APE)
@end table
@node Explanations, References, Alternatives, Format
@c node-name, next, previous, up
@section Additional explanations
@cindex Additional explanations
@cindex Explanations, Additional
@noindent
Terms in square brackets show additional explanations, of which do not
directly belong to the acronym's expansion, but rather to the acronym's
meaning.
@noindent
Examples:
@table @asis
@item ARM
Annotated [c++] Reference Manual
@item RLL
Run Length Limited [encoding]
@end table
@node References, Concatenation, Explanations, Format
@c node-name, next, previous, up
@section Reference tags for acronyms
@cindex Acronyms, References for
@cindex References for acronyms
@noindent
The terms in parenthesis which often appear behind the expansions are
reference links to certain topics or firms and should help you to get an
idea of in which context an acronym is being used.
@noindent
Examples:
@table @asis
@item WB
WorkBench (Amiga)
@item WYSIWYG
What You See Is What You Get (DTP)
@end table
@noindent
Please note that the original version of V.E.R.A. is meant to be
formatted in a hypertext environment. Thus some references may seem
redundant in an environment which does not support such links.
@noindent
Examples:
@table @asis
@item API
Application Program Interface (API)
@end table
@node Concatenation, Versions, References, Format
@c node-name, next, previous, up
@section Concatenated acronyms
@noindent
Often-used concatenated acronyms appear without the space or any special
characters between them.
@noindent
Examples:
@table @asis
@item AMTPE
Apple Media Tool Programming Environment (Apple), "AMT PE"
@item RISCOS
RISC Operating System (Acorn), "RISC OS"
@end table
@node Versions, File extensions, Concatenation, Format
@c node-name, next, previous, up
@section Acronyms pointing to versions
@cindex Acronyms pointing to versions
@cindex Versions, Acronyms pointing to
@noindent
When there is a series of related acronyms differing by a number at the
end, V.E.R.A. usually has just one entry, which omits the number. For
example, there are many versions of MNP (Microcom Networking Protocol),
distinguished by numbers; but we do not list MNP4, MNP5 or MNP10, only
MNP.
@noindent
So if you look for an acronym that ends in a number, and you don't find
it, try leaving out the number(s).
@node File extensions, Gaps, Versions, Format
@c node-name, next, previous, up
@section File extensions
@cindex File extensions
@cindex Extensions (files)
@noindent
Please note that file extensions are not covered by V.E.R.A. at the
moment, although some exceptions were made. You will not find things
like EPS (Encapsulated PostScript) or GIF (Graphics Interchange Format).
@noindent
There are many such lists on the Internet if you should be looking
for file extensions.
@node Gaps, , File extensions, Format
@c node-name, next, previous, up
@section Gaps
@cindex Gaps
@cindex Expansions, Missing
@cindex References, Missing
@cindex Missing expansions or references
@noindent
You will probably notice that some acronym expansions or references are
tagged with three question marks (@samp{???}). This indicates that an
expansion or reference is still missing or uncertain.
@node Acronym, History, Format, Top
@c node-name, next, previous, up
@chapter Acronym
@cindex Acronym, Definition of the term
@cindex Acronyms, Pronunciation of
@cindex Definition of the term acronym
@cindex Pronunciation of acronyms
@noindent
An acronym is a word derived from the initial letters or
groups of letters of several other words.
@noindent
Popular examples are: @*
@ifinfo
@noindent
@emph{Laser}, from "(l)ight (a)mplification by
(s)timulated (e)mission of (r)adiation",
@emph{Radar}, from "(ra)dio (d)etecting (a)nd
(r)anging" or @emph{snafu}, which should politely be rendered
as "(s)ituation (n)ormal, (a)ll (f)ouled
(u)p".
@end ifinfo
@iftex
@noindent
@emph{Laser}, from "@strong{l}ight @strong{a}mplification by
@strong{s}timulated @strong{e}mission of @strong{r}adiation",
@emph{Radar}, from "@strong{ra}dio @strong{d}etecting @strong{a}nd
@strong{r}anging" or @emph{snafu}, which should politely be rendered
as "@strong{s}ituation @strong{n}ormal, @strong{a}ll @strong{f}ouled
@strong{u}p".
@end iftex
@noindent
The word acronym itself derives from the Greek words
@emph{akros} "the highest, the most outer" and @emph{onoma} "name".
@noindent
Please note that acronyms are always pronounced as the
spelling indicates.
@node History, Acknowledgments, Acronym, Top
@c node-name, next, previous, up
@chapter History and other useful information
@cindex Acronyms, How to submit new
@cindex Bugs, How to report
@cindex Call for submissions
@cindex Changes
@cindex Current maintainer
@cindex History
@cindex How to install in the Info environment
@cindex How to report bugs
@cindex How to submit new acronyms
@cindex Info environment, Installation in the
@cindex Installation in the Info environment
@cindex Maintainer, Current
@cindex News
@cindex Release notes
@cindex Reporting bugs
@cindex Requests
@cindex Submissions, Call for
@ifinfo
@noindent
@strong{V.E.R.A. --- Virtual Entity of Relevant Acronyms}
@end ifinfo
@noindent
@strong{Version 7.2} (June 2006)
@noindent
Version 7.2 (Texinfo release 1.17) contains about 405 acronyms
more than the last release. Now V.E.R.A. knows about 11025 acronyms.
@strong{Version 7.0} (June 2005)
@noindent
Version 7.0 (Texinfo release 1.16) contains about 106 acronyms
more than the last release. Now V.E.R.A. knows about 10620 acronyms.
@strong{Version 6.9} (March 2005)
@noindent
Version 6.9 (Texinfo release 1.15) contains about 262 acronyms
more than the last release. Now V.E.R.A. knows about 10514 acronyms.
@strong{Version 6.7} (September 2004)
@noindent
Version 6.7 (Texinfo release 1.14) contains about 92 acronyms
more than the last release. Now V.E.R.A. knows about 10252 acronyms.
Until I find out how to put V.E.R.A. back into the GNU system, I
will provide it on my home page at http://home.snafu.de/ohei.
I have repeatedly written to addresses given in postings,
asking for information on how to access the GNU server to
no availability. Those guys must be busy, very busy.
@strong{Version 6.6} (June 2004)
@noindent
Version 6.6 (Texinfo release 1.13) contains about 290 acronyms
more than the last release. Now V.E.R.A. knows about 10160 acronyms.
Until I find out how to put V.E.R.A. back into the GNU system, I
will provide it on my home page at http://home.snafu.de/ohei.
@strong{Version 6.5} (December 2003)
@noindent
Version 6.5 (Texinfo release 1.12) contains about 210 acronyms
more than the last release. Now V.E.R.A. knows about 9870 acronyms.
Until I find out how to put V.E.R.A. back into the GNU system, I
will provide it on my home page at http://home.snafu.de/ohei.
@strong{Version 6.3} (June 2003)
@noindent
Version 6.3 (Texinfo release 1.11) contains about 150 acronyms
more than the last release. Now V.E.R.A. knows about 9660 acronyms.
I had problems finding an proper way to upload the last release
(Texinfo release 1.10) to the GNU server. All seem to have changed,
the old FTP Server is down, my e-mail contact is gone etc.
Until I find out how to put V.E.R.A. back into the system, I
will provide it on my home page at http://home.snafu.de/ohei.
@strong{Version 6.2} (March 2003)
@noindent
Version 6.2 (Texinfo release 1.10) contains about 300 acronyms
more than the last release. Now V.E.R.A. knows about 9510 acronyms.
For the log: There neither had been a GNU nor a Non-GNU edition
of V.E.R.A. in September 2002.
@strong{Version 6.0} (June 2002)
@noindent
Version 6.0 (Texinfo release 1.9) contains about 289 acronyms
more than the last release. Now V.E.R.A. knows about 9203 acronyms.
Fixed some formatting bugs which had accumulated. Thanks for
reporting those.
There has been a request to add a 'README' file to the
distribution. I added one.
Also added a Perl search routine for V.E.R.A. from
Andres Soolo <soolo [at] math . ut . ee>. You will find
it in the @code{./contrib} directory of the distribution.
For bug reports please contact Andres.
@strong{Version 5.8} (December 2001)
@noindent
Version 5.8 (Texinfo release 1.8) contains about 426 acronyms
more than the last release. Now V.E.R.A. knows about 8914 acronyms.
@strong{Version 5.5} (March 2001)
@noindent
Version 5.5 (Texinfo release 1.7) contains about 320 acronyms
more than the last release. Now V.E.R.A. knows about 8440 acronyms.
There had been no update of the GNU version for nearly a year,
which was mostly due to the lack of significant increase of
acronyms.
Please note that this is the first GNU edition of V.E.R.A.
to be released under the GNU Free Documentation License.
Please also note that Bob Hilliard <hilliard [at] debian . org>
now maintains the Debian vera package as well as the dict-* packages
for the Debian GNU/LINUX distribution.
@strong{Version 5.2} (June 2000)
@noindent
Welcome to the first GNU edition of V.E.R.A. in the year 100,
eh, I mean 1900+100 :)
Version 5.2 (Texinfo release 1.6) contains about 500 acronyms
more than the last release. Now V.E.R.A. knows about
than 8119 acronyms.
There had been no update of the GNU version for over a year,
which was mostly due to the lack of significant increase of
acronyms.
Thanks to all the supporters, some of which did send huge
lists with new acronyms.
@strong{Version 4.7} (March 1999)
@noindent
Version 4.7 (Texinfo release 1.5) contains about 100 acronyms
more than the last release. Now V.E.R.A. knows about
than 7592 acronyms.
Corrected a bug in my script to replace german comments
with the according english terms which led to the comment
brackets being deleted in every line touched by it.
@strong{Version 4.6} (December 1998)
@noindent
Version 4.6 had not been released as Texinfo version,
because there was no significant increase in the count
of acronyms.
@strong{Version 4.5} (September 1998)
@noindent
Version 4.5 (Texinfo release 1.4) contains about 90 acronyms
more than the last release. Now V.E.R.A. knows about
than 7490 acronyms.
@noindent
I also received a lot of spelling corrections for the
acronym expansions as well as for the text of this
Texinfo release. Thanks to the submitters.
@noindent
@strong{Version 4.4} (June 1998)
@noindent
Version 4.4 (Texinfo release 1.3) contains about 250 acronyms
more than the last release. Now V.E.R.A. knows about more
than 7400 acronyms.
@noindent
Version 4.2 had accidently been released containing
ISO 8859-1 characters. I received no complaints, but I
believe not everyone can display these characters as
meant to be, so I switched back to 7 bit with this version.
@noindent
Recently V.E.R.A. ran into copyright/trademark problems. It's
unbelievable how small the name space in the computer field
went over the years. To give you an example there are acronyms
in this list which have five or more different meanings.
However Systems Science Inc. agreed to solve the problem
by including the following sentence into the distribution:
"This dictionary has nothing to do with Systems Science Inc.
or its products."
Please don't wonder if you surprisingly run into this sentence.
@noindent
@strong{Version 4.3} (March 1998)
@noindent
I found no time to release V.E.R.A. 4.3 as Texinfo version
in March 1998 as I was busy with other things. As compiling
the Texinfo version is always additional work to do, I thought
of to spare the March version and release the next Texinfo version
on the next release date (June, 1st).
@noindent
@strong{Version 4.2}
@noindent
Version 4.2 contains about 180 acronyms more than the last release.
I also received a mail from the folks who maintain the GNU catalogue.
This may mean that V.E.R.A. will be included on the GNU CD-ROM
distribution, but I'm not sure.
@noindent
@strong{Version 4.1} (December 1997)