How can Dynamo 1.1.0.0 be backward compatible with Dynamo 0.7.0.0

I/m trying to learn with Dynamo with the learning videos, but there is a package named " UV Quads on Surface " was created by Dynamo 0.7.0.0 which can’t be used in Dynamo 1.1.0.0. I’ll be very appreciate if anyone can tell me how to solve this problem.

Hi,
please copy code from node 0.7 and paste it here.

These are the nodes covered in the package.

@silentbell_mo You could try substituting that custom node with this code…

p0=surf<1>.PointAtParameter((0..1..#u)<2>,(0..1..#v)<3>);
p11=List.DropItems(p0,-1);
p12=List.Sublists(p11<1>,0..1,1);
p13=List.DropItems(p12<1>,-1);
p14=List.Flatten(p13,1);

p21=List.DropItems(p0,1);
p22=List.Sublists(p21<1>,0..1,1);
p23=List.DropItems(p22<1>,-1);
p24=List.Reverse((List.Flatten(p23,1))<1>);

p=Flatten(Transpose({p14,p24})<1>);

polygons=Polygon.ByPoints(p);

This is from an earlier similar discussion…