On Sun, 4 Nov 2007, Ivan Kurmanov wrote:
On 3 Nov 2007, at 17:43, Christian Zimmermann wrote:
I got tired of having to answer 30 emails a day for things that could be handled with better wording on RAS. Thus I made changes to the following:
Christian, my congratulations. I'm sorry I couldn't help with this for long.
To maintain these changes over future ACIS upgrades, we need to turn them into a patch that can be re-applied automatically.
Do you mea that with an ACIS upgrade the presentation directory gets overwritten? This is bad.
Patches should be made with a recursive diff -udr and be kept in a safe dry place. Apply with patch utility. Something like the following:
$ diff -udr presentation.original presentation > RAS_presentation.patch
then before upgrade:
$ cd ACIS-version-... $ cd presentation $ patch -p1 < /path/to/RAS_presentation.patch
Ivan