On Monday 04 June 2007 07:20:15 Jürgen Spitzmüller wrote: > OK here's a start. > convert_graphics_rotation seems to work (but I'm not sure it really does), > however, revert_graphics_rotation does not. > > I really don't know what I'm doing here, so please help.
I took some time to look this problem. The logic seems right, there are one place where there is a off by one, because in python range(a,b), assuming a and b integers goes from a to b-1. This logic may seems strange but it pays because. range(a,b) + range(b,c) == range(a,c) Since you are only having problems in the revert stage put this in and we will fix the remain problems in svn. Yes this is asymmetric with relation to updates, updates should always work, revert can be fixed at any time, even if in this case means before release. > Jürgen -- José Abílio