Oberon/ETH Oberon/Tutorial/DataConversion

From Wikibooks, open books for an open world
Jump to navigation Jump to search

These tutorial pages were written by André Fischer (afi) with editorial assistance of Hannes Marais, were hosted at the ETHZ and remain under the ETH license. Related content is found in the system via Book.Tool. Extended content is also available on paper. Some tutorial pages are in the WayBack archive.

Data conversion tools

[ Text | Contents | Index | Master index]

Objective

[edit | edit source]

Learn how to exchange ASCII and Unix text files via FTP, e-mail or diskette.

Estimated time: 5 minutes.

Text conversions

[edit | edit source]

Among the files that you might encounter on some FTP sites are Unix ASCII text files which use 0AX where Oberon uses 0DX. The conversion involves changing these LFs to CRs. If you open a text and find that it is shown interspersed with small rectangular boxes (representing the LFs), you can be sure that a Unix ASCII text is involved.

EditTools.OpenUnix fileName | ^ opens a document viewer displaying the named Unix ASCII file converted to Oberon System 3 text.

EditTools.StoreUnix [*] stores the marked Oberon text document as a Unix ASCII file. The file name is taken from the document's name plate. If the command is executed from within a document, the document itself is implied: it must not necessarily be marked and the "*" is not required.

Exercise:

Access "ftp://nuchem.nsrl.rochester.edu/pub/Oberon/B2Project/" and download (in binary) [Get ^] Version.0.4.ascii

then convert it with: EditTools.OpenUnix Version.0.4.ascii ~

which you may now store as an Oberon System 3 text document.

Among the files that you might want to convert are MS DOS ASCII text files which use 0DX 0AX where Oberon uses 0DX. The conversion involves changing the CR/LF pairs to single CRs. If you open a text and find that it is shown with small rectangular boxes (representing the LFs) at the beginning of each line, you can be sure that an MS DOS ASCII text is involved.

EditTools.OpenAscii fileName | ^ opens a document viewer displaying the named MS DOS ASCII file converted to Oberon System 3 text.

EditTools.StoreAscii [*] stores the marked text document as an MS DOS ASCII file. The file name is taken from the document's name plate. If the command is executed from within a document, the document itself is implied: it must not necessarily be marked and the "*" is not required.

You may verify that with the typical and very central _OBERON.INI file, called Registry, used by Oberon for Windows and by MacOberon. But, be careful not to damage this essential file and exercise with a copy of it.

You may easily verify the content of the files with the Hex.Open fileName | ^ command.

Index

[edit | edit source]

E

EditTools.OpenAscii
EditTools.OpenUnix
EditTools.StoreAscii
EditTools.StoreUnix

H

Hex.Open

T

text conversion


Revised, 01 Dec 1996
Installed on 30 05 1997