| 1 | # main topics: |
|---|
| 2 | UP arb.hlp |
|---|
| 3 | UP glossary.hlp |
|---|
| 4 | UP arb_export.hlp |
|---|
| 5 | |
|---|
| 6 | # sub topics: |
|---|
| 7 | #SUB subtopic.hlp |
|---|
| 8 | |
|---|
| 9 | # format described in ../help.readme |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | TITLE Export File Formats |
|---|
| 13 | |
|---|
| 14 | OCCURRENCE ARB_NT/File/Export/Export to external format |
|---|
| 15 | |
|---|
| 16 | DESCRIPTION The export format description file (*.eft) describes |
|---|
| 17 | the format. |
|---|
| 18 | It contains different sections: |
|---|
| 19 | |
|---|
| 20 | SECTIONS |
|---|
| 21 | |
|---|
| 22 | SUFFIX suffix ;The suggested file suffix |
|---|
| 23 | # headerinfo ;Header information |
|---|
| 24 | BEGIN ... ;the main section |
|---|
| 25 | |
|---|
| 26 | The main section is part of a 'SRT' (see LINK{srt.hlp}) |
|---|
| 27 | conversion (in fact the main section S is replaced by "*=S" and |
|---|
| 28 | the SRT is started on an empty string). |
|---|
| 29 | That means: |
|---|
| 30 | |
|---|
| 31 | 1. All simple 'text' is written to the output file. |
|---|
| 32 | |
|---|
| 33 | 2. All references '*([ref][:|#modifier])' are replaced |
|---|
| 34 | by the [modified] value of the reference |
|---|
| 35 | |
|---|
| 36 | 3. All lines containing the word '$$DELETE_LINE$$' are deleted. |
|---|
| 37 | |
|---|
| 38 | 4. Lines ending with a \ are joined with the next line. |
|---|
| 39 | |
|---|
| 40 | SPECIAL SECTIONS |
|---|
| 41 | |
|---|
| 42 | PRE_FORMAT xxx.eft |
|---|
| 43 | |
|---|
| 44 | [ DESCRIPTION "text describing generated export format" ]+ |
|---|
| 45 | |
|---|
| 46 | SYSTEM "command" |
|---|
| 47 | |
|---|
| 48 | First a output is created using |
|---|
| 49 | xxx.eft. Then command is used to convert the |
|---|
| 50 | result into the wanted result. |
|---|
| 51 | |
|---|
| 52 | In command use |
|---|
| 53 | |
|---|
| 54 | $< as input-filename |
|---|
| 55 | |
|---|
| 56 | $> as output-filename |
|---|
| 57 | |
|---|
| 58 | INTERNAL type |
|---|
| 59 | |
|---|
| 60 | used for formats hardcoded in ARB_NT. |
|---|
| 61 | |
|---|
| 62 | Supported types: |
|---|
| 63 | |
|---|
| 64 | 'xml_write' Writes all none-hidden fields to XML. |
|---|
| 65 | |
|---|
| 66 | NOTES The best ways to design new formats are: |
|---|
| 67 | |
|---|
| 68 | 1. Copy an existing format and modify it step by step. |
|---|
| 69 | 2. Design a simple format and modify it step by step. |
|---|
| 70 | |
|---|
| 71 | For a list of common database entries see LINK{sp_info.hlp}. |
|---|
| 72 | |
|---|
| 73 | EXAMPLES Edit the files in '$ARBHOME/lib/export' |
|---|
| 74 | |
|---|
| 75 | WARNINGS Don't change an '*.eft' file, if you don't understand how |
|---|
| 76 | it works. |
|---|
| 77 | Be careful when using ':' or '"' symbols. |
|---|
| 78 | Escape them if those symbols don't have a meaning. |
|---|
| 79 | |
|---|
| 80 | BUGS No bugs known |
|---|
| 81 | |
|---|